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.
13 lines
175 B
Markdown
13 lines
175 B
Markdown
# UndefinedDocblockClass
|
|
|
|
Emitted when referencing a class that does not exist from a docblock
|
|
|
|
```php
|
|
<?php
|
|
|
|
/**
|
|
* @param DoesNotExist $a
|
|
*/
|
|
function foo($a) : void {}
|
|
```
|