mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
10 lines
191 B
Markdown
10 lines
191 B
Markdown
|
# UnresolvableInclude
|
||
|
|
||
|
Emitted when Psalm cannot figure out what specific file is being included/required by PHP.
|
||
|
|
||
|
```php
|
||
|
function requireFile(string $s) : void {
|
||
|
require_once($s);
|
||
|
}
|
||
|
```
|