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