mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-07 07:57:01 +00:00
11 lines
192 B
Plaintext
11 lines
192 B
Plaintext
--TEST--
|
|
"include" function accepts Twig_Template instance
|
|
--TEMPLATE--
|
|
{{ include(foo) }} FOO
|
|
--TEMPLATE(foo.twig)--
|
|
BAR
|
|
--DATA--
|
|
return ['foo' => $twig->load('foo.twig')]
|
|
--EXPECT--
|
|
BAR FOO
|