mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
207 B
207 B
PossiblyInvalidArrayOffset
Emitted when it’s possible that the array offset is not applicable to the value you’re trying to access.
$arr = rand(0, 1) ? ["a" => 5] : "hello";
echo $arr[0];