PageRenderTime 45ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/twig/twig/lib/Twig/Node/Flush.php

https://github.com/kalichava/adrenalins
PHP | 36 lines | 15 code | 3 blank | 18 comment | 0 complexity | 4fd771f76093c1b60f1ddc1535295c19 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause, GPL-2.0
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) 2011 Fabien Potencier
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Represents a flush node.
  12. *
  13. * @author Fabien Potencier <fabien@symfony.com>
  14. */
  15. class Twig_Node_Flush extends Twig_Node
  16. {
  17. public function __construct($lineno, $tag)
  18. {
  19. parent::__construct(array(), array(), $lineno, $tag);
  20. }
  21. /**
  22. * Compiles the node to PHP.
  23. *
  24. * @param Twig_Compiler A Twig_Compiler instance
  25. */
  26. public function compile(Twig_Compiler $compiler)
  27. {
  28. $compiler
  29. ->addDebugInfo($this)
  30. ->write("flush();\n")
  31. ;
  32. }
  33. }