Home
Phabricator
Search
Configure Global Search
Log In
Transactions
T7415
Change Details
Change Details
Old
New
Diff
We should write a linter rule to detect when a class name is used instead of `self`: ```lang=diff class Foo { const BAR = 'bar'; public function baz() { - return Foo::BAR; + return self::BAR; } } ```
We should write a linter rule to detect when a class name is used instead of `self`: ```lang=diff class Foo { const BAR = 'bar'; public function baz() { - return Foo::BAR; + return self::BAR; } } ```
Continue