Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 175 Bytes

TooManyArguments.md

File metadata and controls

10 lines (7 loc) · 175 Bytes

TooManyArguments

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

<?php

function foo(string $a) : void {}
foo("hello", 4);