Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 157 Bytes

UndefinedVariable.md

File metadata and controls

11 lines (8 loc) · 157 Bytes

UndefinedVariable

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

<?php

function foo() {
    echo $a;
}