From c0fa14c2386df2b4444e803ddc11e592b16d3a20 Mon Sep 17 00:00:00 2001 From: freekmurze Date: Mon, 30 Dec 2024 12:56:36 +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 a4113d5..f6ed0e2 100644 --- a/src/Browsershot.php +++ b/src/Browsershot.php @@ -268,7 +268,7 @@ public function setUrl(string $url): static { $url = trim($url); - if (filter_var($url, FILTER_VALIDATE_URL) === false ){ + if (filter_var($url, FILTER_VALIDATE_URL) === false) { throw FileUrlNotAllowed::urlCannotBeParsed($url); }