<?phpdeclare(strict_types=1);namespace InterventionImageInterfaces;interface AnalyzerInterface{ /** * Analyze given image and return the retrieved data. */ public function analyze(ImageInterface $image): mixed;}