MIR0711
AbstractMethodCall
An abstract method is invoked where no concrete implementation exists.
Example
Section titled “Example”<?phpabstract class A { abstract public static function f(): void; }A::f(); // AbstractMethodCallHow to fix
Section titled “How to fix”Call it on a concrete subclass that implements the method.