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