File "Variable.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/Variable.php
File size: 264 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\DependencyInjection;
if (!defined('ABSPATH')) exit;
class Variable
{
 private $name;
 public function __construct(string $name)
 {
 $this->name = $name;
 }
 public function __toString()
 {
 return $this->name;
 }
}