File "Parameter.php"

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

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