Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 214 Bytes

UnimplementedInterfaceMethod.md

File metadata and controls

12 lines (9 loc) · 214 Bytes

UnimplementedInterfaceMethod

Emitted when a class implements an interface but does not implement all of its methods

<?php

interface I {
    public function foo() : void;
}
class A implements I {}