composer package updates
[openemr.git] / vendor / twig / twig / lib / Twig / Node / Flush.php
blobfcc461ac000a293d9a55b80cedad0fc431b65a06
1 <?php
3 /*
4 * This file is part of Twig.
6 * (c) Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 /**
13 * Represents a flush node.
15 * @author Fabien Potencier <fabien@symfony.com>
17 class Twig_Node_Flush extends Twig_Node
19 public function __construct($lineno, $tag)
21 parent::__construct(array(), array(), $lineno, $tag);
24 public function compile(Twig_Compiler $compiler)
26 $compiler
27 ->addDebugInfo($this)
28 ->write("flush();\n")
33 class_alias('Twig_Node_Flush', 'Twig\Node\FlushNode', false);