mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 17:57:37 +01:00
13 lines
176 B
Markdown
13 lines
176 B
Markdown
# UndefinedDocblockClass
|
||
|
||
Emitted when referencing a class that doesn’t exist from a docblock
|
||
|
||
```php
|
||
<?php
|
||
|
||
/**
|
||
* @param DoesNotExist $a
|
||
*/
|
||
function foo($a) : void {}
|
||
```
|