mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +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();
}