Current File : /var/www/pediatribu/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Node/FlushNode.php
<?php
namespace MailPoetVendor\Twig\Node;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Attribute\YieldReady;
use MailPoetVendor\Twig\Compiler;
#[YieldReady]
class FlushNode extends Node
{
 public function __construct(int $lineno, string $tag)
 {
 parent::__construct([], [], $lineno, $tag);
 }
 public function compile(Compiler $compiler) : void
 {
 $compiler->addDebugInfo($this)->write("flush();\n");
 }
}