mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Make the methods of ArcanistBaseXHPASTLinter
final.
Summary: No subclass should need to override these methods. Additionally, none currently do. Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9035
This commit is contained in:
parent
3d5aa332fe
commit
d80468bf81
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
abstract class ArcanistBaseXHPASTLinter extends ArcanistFutureLinter {
|
||||
|
||||
protected function raiseLintAtToken(
|
||||
protected final function raiseLintAtToken(
|
||||
XHPASTToken $token,
|
||||
$code,
|
||||
$desc,
|
||||
|
@ -18,7 +18,7 @@ abstract class ArcanistBaseXHPASTLinter extends ArcanistFutureLinter {
|
|||
$replace);
|
||||
}
|
||||
|
||||
protected function raiseLintAtNode(
|
||||
protected final function raiseLintAtNode(
|
||||
XHPASTNode $node,
|
||||
$code,
|
||||
$desc,
|
||||
|
|
Loading…
Reference in a new issue