<?php
declare(strict_types=1);
namespace InterventionImageDrivers;
use InterventionImageInterfacesAnalyzerInterface;
use InterventionImageInterfacesImageInterface;
abstract class SpecializableAnalyzer extends Specializable implements AnalyzerInterface
{
/**
* {@inheritdoc}
*
* @see AnalyzerInterface::analyze()
*/
public function analyze(ImageInterface $image): mixed
{
return $image->analyze($this);
}
}