Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jul 3, 2024
1 parent 0686b84 commit 4517207
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Browsershot.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
];
}

Expand Down

0 comments on commit 4517207

Please sign in to comment.