File "TempNameExpression.php"

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

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