NullArrayAccess

March 20, 2020 ยท View on GitHub

Emitted when trying to access an array value on null

<?php

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