mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
165 B
165 B
TooFewArguments
Emitted when calling a function with fewer arguments than the function has parameters
<?php
function foo(string $a) : void {}
foo();