UnimplementedAbstractMethod
A concrete class does not implement an abstract method from its parent.
Example
Section titled “Example”<?phpabstract class Shape { abstract public function area(): float;}
class Circle extends Shape {} // area() not implementedHow to fix
Section titled “How to fix”Implement the abstract method in the concrete class.