twigphp / Twig

Twig, the flexible, fast, and secure template language for PHP
https://twig.symfony.com/
BSD 3-Clause "New" or "Revised" License
8.18k stars 1.25k forks source link

Throw a SyntaxError exception at compile time when a Twig callable has not the minimum number of required arguments #4207

Closed fabpot closed 3 months ago

fabpot commented 3 months ago

When using named arguments, a compilation error is thrown when some required arguments are missing. But when not using arguments, the error was thrown at runtime. This PR fixed this.