Skip to content

UnimplementedAbstractMethod

A concrete class does not implement an abstract method from its parent.

<?php
abstract class Shape {
abstract public function area(): float;
}
class Circle extends Shape {} // area() not implemented

Implement the abstract method in the concrete class.