Equip\Payload::withSetting PHP Method

withSetting() public method

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