<?php
declare(strict_types=1);
namespace InterventionImageColorsOklabChannels;
use InterventionImageColorsFloatColorChannel;
class A extends FloatColorChannel
{
/**
* {@inheritdoc}
*
* @see ColorChannelInterface::min()
*/
public static function min(): float
{
return -0.4;
}
/**
* {@inheritdoc}
*
* @see ColorChannelInterface::max()
*/
public static function max(): float
{
return 0.4;
}
}