Файл vendor/intervention/image/src/Interfaces/AnalyzerInterface.php Вес запакованого файла 206b (206 b) Вес распакованого файла: 388b (388 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Interfaces;
use Intervention\Image\Exceptions\RuntimeException;
interface AnalyzerInterface
{
/**
* Analyze given image and return the retrieved data
*
* @param ImageInterface $image
* @throws RuntimeException
* @return mixed
*/
public function analyze(ImageInterface $image): mixed;
}