From 45172071d7fd404edec262cd67172f5d23fafdab Mon Sep 17 00:00:00 2001 From: freekmurze Date: Wed, 3 Jul 2024 08:45:08 +0000 Subject: [PATCH] Fix styling --- src/Browsershot.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Browsershot.php b/src/Browsershot.php index 2293f7a..ed174f1 100644 --- a/src/Browsershot.php +++ b/src/Browsershot.php @@ -1064,13 +1064,13 @@ protected function callBrowser(array $command): string throw new ProcessFailedException($process); } - protected function getWindowsEnv() : array + protected function getWindowsEnv(): array { return [ - "LOCALAPPDATA" => getenv("LOCALAPPDATA"), - "Path" => getenv("Path"), - "SystemRoot" => getenv("SystemRoot"), - "USERPROFILE" => getenv("USERPROFILE"), + 'LOCALAPPDATA' => getenv('LOCALAPPDATA'), + 'Path' => getenv('Path'), + 'SystemRoot' => getenv('SystemRoot'), + 'USERPROFILE' => getenv('USERPROFILE'), ]; }