Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 176 Bytes

NullArgument.md

File metadata and controls

10 lines (7 loc) · 176 Bytes

NullArgument

Emitted when calling a function with a null value argument when the function does not expect it

<?php

function foo(string $s) : void {}
foo(null);