Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 210 Bytes

NonStaticSelfCall.md

File metadata and controls

15 lines (11 loc) · 210 Bytes

NonStaticSelfCall

Emitted when calling a non-static function statically

<?php

class A {
    public function foo(): void {}

    public static function bar(): void {
        self::foo();
    }
}