UnimplementedInterfaceMethod
A class does not implement a method required by an interface it declares.
Example
Section titled “Example”<?phpinterface Logger { public function log(string $message): void;}
class NullLogger implements Logger {} // log() not implementedHow to fix
Section titled “How to fix”Implement all required interface methods.