Файл: vendor/intervention/image/src/Drivers/Imagick/Analyzers/HeightAnalyzer.php
Строк: 35
<?php
declare(strict_types=1);
namespace InterventionImageDriversImagickAnalyzers;
use InterventionImageAnalyzersHeightAnalyzer as GenericHeightAnalyzer;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesSpecializedInterface;
class HeightAnalyzer extends GenericHeightAnalyzer implements SpecializedInterface
{
public function analyze(ImageInterface $image): mixed
{
return $image->core()->native()->getImageHeight();
}
}