Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 404 Bytes

0081.md

File metadata and controls

13 lines (8 loc) · 404 Bytes

0081: Too many actual parameters

The command is given more parameters than it expects.

For example, the Inc command accepts either one or two parameters and supplying three would raise an error.

Possible solutions: check the related documentation and provide fewer parameters:

Sqr($var, 1) // error
Sqr($var) // OK