mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 17:57:37 +01:00
12 lines
179 B
Markdown
12 lines
179 B
Markdown
# UndefinedInterface
|
||
|
||
Emitted when referencing an interface that doesn’t exist but does have an identically-named class.
|
||
|
||
```php
|
||
<?php
|
||
|
||
class C {}
|
||
|
||
interface I extends C {}
|
||
```
|