Back to Psalm

UndefinedVariable

docs/running_psalm/issues/UndefinedVariable.md

6.16.1156 B
Original Source

UndefinedVariable

Emitted when referencing a variable that doesn't exist in a given function’s scope

php
<?php

function foo() {
    echo $a;
}