From a080a60b6fc8dc359aaebd761eb107985e08e340 Mon Sep 17 00:00:00 2001 From: moisish Date: Fri, 31 May 2024 12:38:22 +0000 Subject: [PATCH] Fix styling --- src/Browsershot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Browsershot.php b/src/Browsershot.php index 4ec36c6..c50f2f1 100644 --- a/src/Browsershot.php +++ b/src/Browsershot.php @@ -604,7 +604,7 @@ public function save(string $targetPath): void throw CouldNotTakeBrowsershot::chromeOutputEmpty($targetPath, $output, $command); } - if (!$this->imageManipulations->isEmpty()) { + if (! $this->imageManipulations->isEmpty()) { $this->imageManipulations->apply($targetPath); } }