From 082ad8afc365123fdc01ed723dc359d062be8ea7 Mon Sep 17 00:00:00 2001 From: freekmurze <483853+freekmurze@users.noreply.github.com> Date: Mon, 20 Jan 2025 15:21:53 +0000 Subject: [PATCH] Fix styling --- src/Drivers/Vips/VipsDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Drivers/Vips/VipsDriver.php b/src/Drivers/Vips/VipsDriver.php index d1743ea..f166e8f 100644 --- a/src/Drivers/Vips/VipsDriver.php +++ b/src/Drivers/Vips/VipsDriver.php @@ -363,7 +363,7 @@ public function resize(int $width, int $height, array $constraints): static $heightRatio = $resized->height / $this->image->height; $this->image = $this->image->resize($widthRatio, [ - 'vscale' => $heightRatio + 'vscale' => $heightRatio, ]); return $this;