mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
ea52b9d23a
While I was searching for some code, ran across these.
12 lines
113 B
Markdown
12 lines
113 B
Markdown
# UndefinedTrait
|
|
|
|
Emitted when referencing a trait that does not exist
|
|
|
|
```php
|
|
<?php
|
|
|
|
class A {
|
|
use T;
|
|
}
|
|
```
|