Skip to content

UndefinedVariable

A variable is used before it has been assigned.

<?php
function greet(): string {
return $message; // $message was never assigned
}

Assign the variable before reading it, or initialise it to a default value.

<?php
function greet(): string {
$message = 'hello';
return $message;
}