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