29 lines
476 B
Plaintext
Executable File
29 lines
476 B
Plaintext
Executable File
--TEST--
|
|
Twig supports method calls
|
|
--TEMPLATE--
|
|
{{ items.foo.foo }}
|
|
{{ items.foo.getFoo() }}
|
|
{{ items.foo.bar }}
|
|
{{ items.foo['bar'] }}
|
|
{{ items.foo.bar('a', 43) }}
|
|
{{ items.foo.bar(foo) }}
|
|
{{ items.foo.self.foo() }}
|
|
{{ items.foo.is }}
|
|
{{ items.foo.in }}
|
|
{{ items.foo.not }}
|
|
--DATA--
|
|
return array('foo' => 'bar', 'items' => array('foo' => new Foo(), 'bar' => 'foo'))
|
|
--CONFIG--
|
|
return array('strict_variables' => false)
|
|
--EXPECT--
|
|
foo
|
|
foo
|
|
bar
|
|
|
|
bar_a-43
|
|
bar_bar
|
|
foo
|
|
is
|
|
in
|
|
not
|