<?php
declare(strict_types=1);
namespace InterventionImageInterfaces;
use InterventionImageExceptionsRuntimeException;
interface AnalyzerInterface
{
/**
* Analyze given image and return the retrieved data
*
* @param ImageInterface $image
* @throws RuntimeException
* @return mixed
*/
public function analyze(ImageInterface $image): mixed;
}