From b8483172e124d164ad60b168275a1ed98c791569 Mon Sep 17 00:00:00 2001 From: Evan Goss Date: Mon, 24 Oct 2022 05:42:07 -0700 Subject: [PATCH] Add description to `secured` command (#1288) --- cli/valet.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/valet.php b/cli/valet.php index ed58b87..4e9d70e 100755 --- a/cli/valet.php +++ b/cli/valet.php @@ -223,7 +223,7 @@ })->descriptions('Stop serving the given domain over HTTPS and remove the trusted TLS certificate'); /** - * Get all the current secured sites. + * Display all of the currently secured sites. */ $app->command('secured', function () { $sites = collect(Site::secured())->map(function ($url) { @@ -231,7 +231,7 @@ }); table(['Site'], $sites->all()); - }); + })->descriptions('Display all of the currently secured sites'); /** * Create an Nginx proxy config for the specified domain.