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

https://github.com/brtriver/silx-users-jp · PHP · 36 lines · 15 code · 3 blank · 18 comment · 0 complexity · 03eb18a04ac1322f21ac8091feb85dcb MD5 · raw file

  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 $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. }