mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
168 B
168 B
UndefinedInterfaceMethod
Emitted when calling a method that doesn’t exist on an interface
<?php
interface I {}
function foo(I $i) {
$i->bar();
}