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

Add description to secured command (#1288)

This commit is contained in:
Evan Goss
2022-10-24 05:42:07 -07:00
committed by GitHub
parent 305736bd76
commit b8483172e1

View File

@@ -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.