mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
10 lines
134 B
Markdown
10 lines
134 B
Markdown
# MissingFile
|
|
|
|
Emitted when using `include` or `require` on a file that does not exist
|
|
|
|
```php
|
|
<?php
|
|
|
|
require("nonexistent.php");
|
|
```
|