Просмотр файла vendor/intervention/image/src/Colors/Hsl/Channels/Saturation.php

Размер файла: 482B
<?php

declare(strict_types=1);

namespace Intervention\Image\Colors\Hsl\Channels;

use Intervention\Image\Colors\AbstractColorChannel;

class Saturation extends AbstractColorChannel
{
    /**
     * {@inheritdoc}
     *
     * @see ColorChannelInterface::min()
     */
    public function min(): int
    {
        return 0;
    }

    /**
     * {@inheritdoc}
     *
     * @see ColorChannelInterface::max()
     */
    public function max(): int
    {
        return 100;
    }
}