Files
Twig/tests/Fixtures/macros/required_arguments.test
2026-07-30 14:14:10 +02:00

11 lines
291 B
Plaintext

--TEST--
macro arguments without a default value are required
--TEMPLATE--
{% from _self import test %}
{% macro test(a, b) %}{% endmacro %}
{{ test() }}
--DATA--
return []
--EXCEPTION--
Twig\Error\RuntimeError: Value for argument "a" is required for macro "test" in "index.twig" at line 4.