interface Twig_ParserInterface

Interface implemented by parser classes.

@package twig @author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_ParserInterface

All classes that implement Twig_ParserInterface

File

drupal/core/vendor/twig/twig/lib/Twig/ParserInterface.php, line 18

View source
interface Twig_ParserInterface {

  /**
   * Converts a token stream to a node tree.
   *
   * @param Twig_TokenStream $stream A token stream instance
   *
   * @return Twig_Node_Module A node tree
   */
  function parse(Twig_TokenStream $stream);

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_ParserInterface::parse function Converts a token stream to a node tree. 1