mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
9 lines
123 B
Markdown
9 lines
123 B
Markdown
|
# InterfaceInstantiation
|
||
|
|
||
|
Emitted when an attempt is made to instantiate an interface:
|
||
|
|
||
|
```php
|
||
|
interface I {}
|
||
|
new I();
|
||
|
```
|