mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
214 B
214 B
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 {}