File "AutoEscapeNode.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Node/AutoEscapeNode.php
File size: 424 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Twig\Node;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Compiler;
class AutoEscapeNode extends Node
{
 public function __construct($value, Node $body, int $lineno, string $tag = 'autoescape')
 {
 parent::__construct(['body' => $body], ['value' => $value], $lineno, $tag);
 }
 public function compile(Compiler $compiler) : void
 {
 $compiler->subcompile($this->getNode('body'));
 }
}