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:
@@ -223,7 +223,7 @@
|
|||||||
})->descriptions('Stop serving the given domain over HTTPS and remove the trusted TLS certificate');
|
})->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 () {
|
$app->command('secured', function () {
|
||||||
$sites = collect(Site::secured())->map(function ($url) {
|
$sites = collect(Site::secured())->map(function ($url) {
|
||||||
@@ -231,7 +231,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
table(['Site'], $sites->all());
|
table(['Site'], $sites->all());
|
||||||
});
|
})->descriptions('Display all of the currently secured sites');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an Nginx proxy config for the specified domain.
|
* Create an Nginx proxy config for the specified domain.
|
||||||
|
|||||||
Reference in New Issue
Block a user