Nelmio\Alice\ParameterBag::without PHP Метод

without() публичный Метод

public without ( string $key ) : self
$key string
Результат self
    public function without(string $key) : self
    {
        $clone = clone $this;
        unset($clone->parameters[$key]);
        return $clone;
    }