TooFewArguments
March 20, 2020 ยท View on GitHub
Emitted when calling a function with fewer arguments than the function has parameters
<?php
function foo(string $a) : void {}
foo();
March 20, 2020 ยท View on GitHub
Emitted when calling a function with fewer arguments than the function has parameters
<?php
function foo(string $a) : void {}
foo();