Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 134 Bytes

PossiblyNullArrayAssignment.md

File metadata and controls

10 lines (7 loc) · 134 Bytes

PossiblyNullArrayAssignment

Emitted when trying to set a value on a possibly null array

<?php

$a = null;
$a[0][] = 1;