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