mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 03:46:39 +00:00
15 lines
230 B
Plaintext
15 lines
230 B
Plaintext
--TEST--
|
|
Twig supports method calls
|
|
--TEMPLATE--
|
|
{{ items.foo }}
|
|
{{ items['foo'] }}
|
|
{{ items[foo] }}
|
|
{{ items[items[foo]] }}
|
|
--DATA--
|
|
return ['foo' => 'bar', 'items' => ['foo' => 'bar', 'bar' => 'foo']]
|
|
--EXPECT--
|
|
bar
|
|
bar
|
|
foo
|
|
bar
|