Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 120 Bytes

NullArrayAccess.md

File metadata and controls

10 lines (7 loc) · 120 Bytes

NullArrayAccess

Emitted when trying to access an array value on null

<?php

$arr = null;
echo $arr[0];