diff --git a/src/lint/linter/xhpast/rules/ArcanistInterfaceAbstractMethodXHPASTLinterRule.php b/src/lint/linter/xhpast/rules/ArcanistInterfaceAbstractMethodXHPASTLinterRule.php index db75c526..039f0e2a 100644 --- a/src/lint/linter/xhpast/rules/ArcanistInterfaceAbstractMethodXHPASTLinterRule.php +++ b/src/lint/linter/xhpast/rules/ArcanistInterfaceAbstractMethodXHPASTLinterRule.php @@ -1,34 +1,34 @@ selectDescendantsOfType('n_INTERFACE_DECLARATION'); foreach ($interfaces as $interface) { $methods = $interface->selectDescendantsOfType('n_METHOD_DECLARATION'); foreach ($methods as $method) { $modifiers = $this->getModifiers($method); if (idx($modifiers, 'abstract')) { $this->raiseLintAtNode( $method, pht( '`%s` methods cannot be marked as `%s`. This construct will '. 'cause a fatal error.', 'interface', 'abstract')); } } } } }