File "InlinePrint.php"

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

<?php
namespace MailPoetVendor\Twig\Node\Expression;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Compiler;
use MailPoetVendor\Twig\Node\Node;
final class InlinePrint extends AbstractExpression
{
 public function __construct(Node $node, int $lineno)
 {
 parent::__construct(['node' => $node], [], $lineno);
 }
 public function compile(Compiler $compiler) : void
 {
 $compiler->raw('print (')->subcompile($this->getNode('node'))->raw(')');
 }
}