Skip to content

MIR0711

AbstractMethodCall

An abstract method is invoked where no concrete implementation exists.

<?php
abstract class A { abstract public static function f(): void; }
A::f(); // AbstractMethodCall

Call it on a concrete subclass that implements the method.