mirror of
https://github.com/danog/psalm.git
synced 2025-01-09 06:28:36 +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();