<?php
declare(strict_types=1);
namespace InterventionImageColorsHsvChannels;
use InterventionImageColorsIntegerColorChannel;
class Saturation extends IntegerColorChannel
{
/**
* {@inheritdoc}
*
* @see ColorChannelInterface::min()
*/
public static function min(): float
{
return 0;
}
/**
* {@inheritdoc}
*
* @see ColorChannelInterface::max()
*/
public static function max(): float
{
return 100;
}
}