Back to Psalm

TooFewArguments

docs/running_psalm/issues/TooFewArguments.md

6.16.1164 B
Original Source

TooFewArguments

Emitted when calling a function with fewer arguments than the function has parameters

php
<?php

function foo(string $a) : void {}
foo();