mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 02:27:59 +01:00
155 B
155 B
PossiblyNullFunctionCall
Emitted when trying to call a function on a value that may be null
function foo(?callable $a) : void {
$a();
}