PossiblyUndefinedVariable
A variable is only assigned in some branches and may be unset on other paths.
Example
Section titled “Example”<?phpfunction label(bool $flag): string { if ($flag) { $text = 'yes'; } return $text; // $text is not assigned when $flag is false}How to fix
Section titled “How to fix”Assign a default before the branch, or handle every branch.
<?phpfunction label(bool $flag): string { $text = 'no'; if ($flag) { $text = 'yes'; } return $text;}