Файл vendor/intervention/image/src/Interfaces/DecoderInterface.php Вес запакованого файла 214b (214 b) Вес распакованого файла: 410b (410 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Interfaces;
use Intervention\Image\Exceptions\RuntimeException;
interface DecoderInterface
{
/**
* Decode given input either to color or image
*
* @param mixed $input
* @throws RuntimeException
* @return ImageInterface|ColorInterface
*/
public function decode(mixed $input): ImageInterface|ColorInterface;
}