Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 115 Bytes

NullFunctionCall.md

File metadata and controls

10 lines (7 loc) · 115 Bytes

NullFunctionCall

Emitted when trying to use null as a callable

<?php

$arr = null;
echo $arr();