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