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

Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2022-04-14 03:18:04 +00:00
parent 9a316d33be
commit 53735c9b69

View File

@@ -281,7 +281,7 @@
*/ */
$app->command('open [domain]', function ($domain = null) { $app->command('open [domain]', function ($domain = null) {
$url = 'http://'.Site::domain($domain); $url = 'http://'.Site::domain($domain);
CommandLine::runAsUser("open ".escapeshellarg($url)); CommandLine::runAsUser('open '.escapeshellarg($url));
})->descriptions('Open the site for the current (or specified) directory in your browser'); })->descriptions('Open the site for the current (or specified) directory in your browser');
/** /**