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

15 lines
255 B
PHP

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