mirror of
https://github.com/danog/psalm.git
synced 2024-12-11 16:59:45 +01:00
11 lines
183 B
Markdown
11 lines
183 B
Markdown
|
# UnevaluatedCode
|
||
|
|
||
|
Emitted when `--find-dead-code` is turned on and Psalm encounters code that will not be evaluated
|
||
|
|
||
|
```php
|
||
|
function foo() : void {
|
||
|
return;
|
||
|
$a = "foo";
|
||
|
}
|
||
|
```
|