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

Merge pull request #988 from m1guelpf/patch-1

Fix symfony default value error
This commit is contained in:
Matt Stauffer
2020-11-05 11:16:15 -05:00
committed by GitHub

View File

@@ -165,7 +165,7 @@
/**
* Stop serving the given domain over HTTPS and remove the trusted TLS certificate.
*/
$app->command('unsecure [domain] [--all]', function ($domain = null, $all = false) {
$app->command('unsecure [domain] [--all]', function ($domain = null, $all = null) {
if ($all) {
Site::unsecureAll();
return;