mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 19:06:40 +00:00
17 lines
209 B
Plaintext
17 lines
209 B
Plaintext
--TEST--
|
|
macro
|
|
--TEMPLATE--
|
|
{% from _self import test %}
|
|
|
|
{% macro test(a, b = 'bar') -%}
|
|
{{ a }}{{ b }}
|
|
{%- endmacro %}
|
|
|
|
{{ test('foo') }}
|
|
{{ test('bar', 'foo') }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
foobar
|
|
barfoo
|