File "ConstantExpression.php"

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

<?php
namespace MailPoetVendor\Twig\Node\Expression;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Compiler;
class ConstantExpression extends AbstractExpression
{
 public function __construct($value, int $lineno)
 {
 parent::__construct([], ['value' => $value], $lineno);
 }
 public function compile(Compiler $compiler) : void
 {
 $compiler->repr($this->getAttribute('value'));
 }
}