Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 224 Bytes

UnimplementedAbstractMethod.md

File metadata and controls

12 lines (9 loc) · 224 Bytes

UnimplementedAbstractMethod

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 {}