* {% throw 404 'Not Found' %} * */ class TwigTokenParserThrow extends AbstractTokenParser { /** * Parses a token and returns a node. * * @param Token $token A Twig_Token instance * * @return Node A Twig_Node instance */ public function parse(Token $token) { $lineno = $token->getLine(); $stream = $this->parser->getStream(); $code = $stream->expect(Token::NUMBER_TYPE)->getValue(); $message = $this->parser->getExpressionParser()->parseExpression(); $stream->expect(Token::BLOCK_END_TYPE); return new TwigNodeThrow($code, $message, $lineno, $this->getTag()); } /** * Gets the tag name associated with this token parser. * * @return string The tag name */ public function getTag() { return 'throw'; } }