1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-04 08:10:07 +01:00

Fix code style

This commit is contained in:
Matt Stauffer
2022-04-13 23:17:14 -04:00
parent 99cf3d4647
commit 5dc0a62e7c

View File

@@ -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');