geno/wp-content/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/Variable.php
2024-02-01 11:54:18 +00:00

15 lines
264 B
PHP

<?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;
}
}