getLine(); $stream = $this->parser->getStream(); $name = $this->parser->getExpressionParser()->parseExpression(); $paramNames = []; $nodes = [$name]; $end = false; while (!$end) { $current = $stream->next(); switch ($current->getType()) { case TwigToken::NAME_TYPE: $paramNames[] = $current->getValue(); $stream->expect(TwigToken::OPERATOR_TYPE, '='); $nodes[] = $this->parser->getExpressionParser()->parseExpression(); break; case TwigToken::BLOCK_END_TYPE: $end = true; break; default: throw new TwigErrorSyntax( sprintf('Invalid syntax in the content tag. Line %s', $lineno), $stream->getCurrent()->getLine(), $stream->getSourceContext() ); break; } } return new ContentNode(new TwigNode($nodes), $paramNames, $token->getLine(), $this->getTag()); } /** * Gets the tag name associated with this token parser. * * @return string The tag name */ public function getTag() { return 'content'; } }