12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Symfony\Component\ExpressionLanguage\Node;
- use Symfony\Component\ExpressionLanguage\Compiler;
- class ArgumentsNode extends ArrayNode
- {
- public function compile(Compiler $compiler)
- {
- $this->compileArguments($compiler, false);
- }
- public function toArray()
- {
- $array = [];
- foreach ($this->getKeyValuePairs() as $pair) {
- $array[] = $pair['value'];
- $array[] = ', ';
- }
- array_pop($array);
- return $array;
- }
- }
|