Files
2024-04-28 13:15:26 +02:00

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