mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 03:46:39 +00:00
14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
--TEST--
|
|
"." notation
|
|
--TEMPLATE--
|
|
{{ property.foo }}
|
|
{{ date.timezone }}
|
|
--DATA--
|
|
return [
|
|
'date' => new \DateTimeImmutable('now', new \DateTimeZone('Europe/Paris')),
|
|
'property' => (object) array('foo' => 'bar'),
|
|
]
|
|
--EXPECT--
|
|
bar
|
|
Europe/Paris
|