Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 190 Bytes

PossiblyInvalidFunctionCall.md

File metadata and controls

10 lines (7 loc) · 190 Bytes

PossiblyInvalidFunctionCall

Emitted when trying to call a function on a value that may not be callable

<?php

$a = rand(0, 1) ? 5 : function() : int { return 5; };
$b = $a();