mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
209 B
209 B
PossiblyNullArgument
Emitted when calling a function with a value that’s possibly null when the function does not expect it
function foo(string $s) : void {}
foo(rand(0, 1) ? "hello" : null);