mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
11 lines
120 B
Markdown
11 lines
120 B
Markdown
# EmptyArrayAccess
|
|
|
|
Emitted when attempting to access a value on an empty array
|
|
|
|
```php
|
|
<?php
|
|
|
|
$a = [];
|
|
$b = $a[0];
|
|
```
|