1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-18 19:51:22 +02:00

Wrap code line

This commit is contained in:
Oliver Vogel
2022-05-22 11:12:28 +02:00
parent fdb6de6298
commit a9e5c57fb7

View File

@@ -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)
);