oont-contents/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/Variable.php
2025-02-08 15:10:23 +01: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;
}
}