diff --git a/src/Drivers/Abstract/AbstractImage.php b/src/Drivers/Abstract/AbstractImage.php index 2b1b4d6a..7bf79761 100644 --- a/src/Drivers/Abstract/AbstractImage.php +++ b/src/Drivers/Abstract/AbstractImage.php @@ -14,7 +14,7 @@ use Intervention\Image\Interfaces\SizeInterface; use Intervention\Image\Traits\CanHandleInput; use Intervention\Image\Traits\CanResolveDriverClass; -abstract class AbstractImage +abstract class AbstractImage implements ImageInterface { use CanResolveDriverClass; use CanHandleInput; @@ -284,8 +284,12 @@ abstract class AbstractImage ); } - public function padDown(int $width, int $height, $background = 'ffffff', string $position = 'center'): ImageInterface - { + public function padDown( + int $width, + int $height, + $background = 'ffffff', + string $position = 'center' + ): ImageInterface { return $this->modify( $this->resolveDriverClass('Modifiers\PadDownModifier', $width, $height, $background, $position) );