mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
11 lines
125 B
Markdown
11 lines
125 B
Markdown
# InvalidArrayAssignment
|
|
|
|
Emitted when attempting to assign a value on a non-array
|
|
|
|
```php
|
|
<?php
|
|
|
|
$arr = 5;
|
|
$arr[0] = 3;
|
|
```
|