mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
9 lines
207 B
Markdown
9 lines
207 B
Markdown
|
# 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];
|
|||
|
```
|