Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 123 Bytes

NullPropertyFetch.md

File metadata and controls

10 lines (7 loc) · 123 Bytes

NullPropertyFetch

Emitted when trying to fetch a property on a null value

<?php

$a = null;
echo $a->foo;