QuackatronHQ / Gigarepo

Undefined static properties must not be accessed PHP-W1034
Bug risk
Critical
1 occurrence in this check
Access to an undefined static property App\StaticPropertyCallCheck::$name
11    public function run(): void
12    {
13        // invalid
14        self::$name = 'test';15
16        // valid
17        self::$path = '/home/user';