From 3f788b7121ded5ca096c55e062124733f506f2f9 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Fri, 5 Aug 2022 14:00:01 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Illuminate/Foundation/Console/DocsCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Illuminate/Foundation/Console/DocsCommand.php b/src/Illuminate/Foundation/Console/DocsCommand.php index 3de344181749..425b2f88fd9a 100644 --- a/src/Illuminate/Foundation/Console/DocsCommand.php +++ b/src/Illuminate/Foundation/Console/DocsCommand.php @@ -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();