Back to Psalm

PossiblyNullFunctionCall

docs/running_psalm/issues/PossiblyNullFunctionCall.md

6.16.1161 B
Original Source

PossiblyNullFunctionCall

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

php
<?php

function foo(?callable $a) : void {
    $a();
}