Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 165 Bytes

TooFewArguments.md

File metadata and controls

10 lines (7 loc) · 165 Bytes

TooFewArguments

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

<?php

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