geno/wp-content/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/Variable.php

16 lines
264 B
PHP
Raw Normal View History

2024-02-01 17:24:18 +05:30
<?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;
}
}