From 5dc0a62e7cb376efb7051e6c38b5f506a8d92d1c Mon Sep 17 00:00:00 2001 From: Matt Stauffer Date: Wed, 13 Apr 2022 23:17:14 -0400 Subject: [PATCH] Fix code style --- cli/valet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/valet.php b/cli/valet.php index d2af735..527b12b 100755 --- a/cli/valet.php +++ b/cli/valet.php @@ -280,7 +280,7 @@ * Open the current or given directory in the browser. */ $app->command('open [domain]', function ($domain = null) { - $url = "http://".Site::domain($domain); + $url = 'http://'.Site::domain($domain); CommandLine::runAsUser("open ".escapeshellarg($url)); })->descriptions('Open the site for the current (or specified) directory in your browser');