Файл vendor/intervention/image/src/Colors/Rgb/Channels/Alpha.php Вес запакованого файла 213b (213 b) Вес распакованого файла: 306b (306 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Colors\Rgb\Channels;
class Alpha extends Red
{
/**
* {@inheritdoc}
*
* @see ColorChannelInterface::toString()
*/
public function toString(): string
{
return strval(round($this->normalize(), 6));
}
}