Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 109 Bytes

NullReference.md

File metadata and controls

10 lines (7 loc) · 109 Bytes

NullReference

Emitted when attempting to call a method on null

<?php

$a = null;
$a->foo();