Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Aug 5, 2022
1 parent e682c7a commit 3f788b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Foundation/Console/DocsCommand.php
Expand Up @@ -401,9 +401,9 @@ protected function openViaBuiltInStrategy($url)
}

$binaryExecutable = [
'Darwin' => 'open',
'Windows' => 'start',
'Linux' => 'xdg-open'
'Darwin' => 'open',
'Windows' => 'start',
'Linux' => 'xdg-open',
][$this->systemOsFamily];

$process = tap(Process::fromShellCommandline($binaryExecutable.' '.escapeshellcmd($url)))->run();
Expand Down

0 comments on commit 3f788b7

Please sign in to comment.