<?php
declare(strict_types=1);
namespace InterventionImageDriversImagickModifiers;
use InterventionImageInterfacesImageInterface;
use InterventionImageInterfacesSizeInterface;
class ResizeDownModifier extends ResizeModifier
{
protected function getAdjustedSize(ImageInterface $image): SizeInterface
{
return $image->size()->resizeDown($this->width, $this->height);
}
}