File "AssignNameExpression.php"

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

<?php
namespace MailPoetVendor\Twig\Node\Expression;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Compiler;
class AssignNameExpression extends NameExpression
{
 public function compile(Compiler $compiler) : void
 {
 $compiler->raw('$context[')->string($this->getAttribute('name'))->raw(']');
 }
}