Files
Twig/tests/Fixtures/expressions/attributes.test
2024-09-26 17:55:00 +02:00

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