mirror of
https://github.com/danog/psalm.git
synced 2024-12-11 16:59:45 +01:00
12 lines
114 B
Markdown
12 lines
114 B
Markdown
# UndefinedTrait
|
||
|
||
Emitted when referencing a trait that doesn’t exist
|
||
|
||
```php
|
||
<?php
|
||
|
||
class A {
|
||
use T;
|
||
}
|
||
```
|