UndefinedVariable
A variable is used before it has been assigned.
Example
Section titled “Example”<?phpfunction greet(): string { return $message; // $message was never assigned}How to fix
Section titled “How to fix”Assign the variable before reading it, or initialise it to a default value.
<?phpfunction greet(): string { $message = 'hello'; return $message;}