Nelmio\Alice\Definition\FlagBag::withKey PHP Метод

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

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