Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 120 Bytes

EmptyArrayAccess.md

File metadata and controls

10 lines (7 loc) · 120 Bytes

EmptyArrayAccess

Emitted when attempting to access a value on an empty array

<?php

$a = [];
$b = $a[0];