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

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

declare(strict_types=1);

namespace Intervention\Image\Colors\Rgb\Channels;

use Intervention\Image\Colors\AbstractColorChannel;

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

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