Equip\Payload::withSetting PHP 메소드

withSetting() 공개 메소드

public withSetting ( $name, $value )
    public function withSetting($name, $value)
    {
        $copy = clone $this;
        $copy->settings[$name] = $value;
        return $copy;
    }