File "AbstractUnary.php"

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

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