final_static_access
Warning
This rule is deprecated and will be removed on next major version.
You should use self_static_accessor instead.
self_static_accessor
Converts static access to self access in final classes.
static
self
final
--- Original +++ New @@ -3,6 +3,6 @@ { public function getFoo() { - return static::class; + return self::class; } }