public function Twig_Node_Expression_MethodCall::compile in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php \Twig_Node_Expression_MethodCall::compile()
Compiles the node to PHP.
Parameters
Twig_Compiler $compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
File
- vendor/
twig/ twig/ lib/ Twig/ Node/ Expression/ MethodCall.php, line 22
Class
Code
public function compile(Twig_Compiler $compiler) {
$compiler
->subcompile($this
->getNode('node'))
->raw('->')
->raw($this
->getAttribute('method'))
->raw('(');
$first = true;
foreach ($this
->getNode('arguments')
->getKeyValuePairs() as $pair) {
if (!$first) {
$compiler
->raw(', ');
}
$first = false;
$compiler
->subcompile($pair['value']);
}
$compiler
->raw(')');
}