mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +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];
|
|
```
|