UnimplementedAbstractMethod
March 20, 2020 ยท View on GitHub
Emitted when a class extends another, but does not implement all of its abstract methods
<?php
abstract class A {
abstract public function foo() : void;
}
class B extends A {}
March 20, 2020 ยท View on GitHub
Emitted when a class extends another, but does not implement all of its abstract methods
<?php
abstract class A {
abstract public function foo() : void;
}
class B extends A {}