<?php
declare(strict_types=1);
namespace InterventionImageDriversGdModifiers;
use InterventionImageInterfacesSizeInterface;
class CoverDownModifier extends CoverModifier
{
/**
* Calculate resizing size of the cover down process
*/
protected function resizeSize(SizeInterface $size): SizeInterface
{
return $size->resizeDown($this->width, $this->height);
}
}