Nelmio\Alice\Parameter::__construct PHP Method

__construct() public method

public __construct ( string $key, mixed $value )
$key string
$value mixed
    public function __construct(string $key, $value)
    {
        $this->key = $key;
        $this->value = deep_clone($value);
    }