forked from leftypol/leftypol
Upgrade Twig library
This commit is contained in:
parent
22f3a95e0e
commit
0fe5528574
133 changed files with 5080 additions and 1386 deletions
|
@ -12,19 +12,19 @@
|
|||
/**
|
||||
* Represents a node in the AST.
|
||||
*
|
||||
* @package twig
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @deprecated since 1.12 (to be removed in 2.0)
|
||||
*/
|
||||
interface Twig_NodeInterface
|
||||
interface Twig_NodeInterface extends Countable, IteratorAggregate
|
||||
{
|
||||
/**
|
||||
* Compiles the node to PHP.
|
||||
*
|
||||
* @param Twig_Compiler A Twig_Compiler instance
|
||||
*/
|
||||
function compile(Twig_Compiler $compiler);
|
||||
public function compile(Twig_Compiler $compiler);
|
||||
|
||||
function getLine();
|
||||
public function getLine();
|
||||
|
||||
function getNodeTag();
|
||||
public function getNodeTag();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue