Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 190 Bytes

UnevaluatedCode.md

File metadata and controls

12 lines (9 loc) · 190 Bytes

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";
}