mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 18:17:55 +01:00
125 B
125 B
InvalidArrayAssignment
Emitted when attempting to assign a value on a non-array
<?php
$arr = 5;
$arr[0] = 3;