mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
14 lines
168 B
Markdown
14 lines
168 B
Markdown
# UndefinedInterfaceMethod
|
||
|
||
Emitted when calling a method that doesn’t exist on an interface
|
||
|
||
```php
|
||
<?php
|
||
|
||
interface I {}
|
||
|
||
function foo(I $i) {
|
||
$i->bar();
|
||
}
|
||
```
|