mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 08:40:09 +01:00
Fix symfony default value error
Fatal error: Uncaught Symfony\Component\Console\Exception\LogicException: Cannot set a default value when using InputOption::VALUE_NONE mode. in ~/.composer/vendor/laravel/valet/vendor/symfony/console/Input/InputOption.php:159
This commit is contained in:
committed by
GitHub
parent
06632d0516
commit
cbc8416cd9
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user