From afa328577fbccbb7acad225221f8b25645c5826a Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Thu, 21 Sep 2017 01:16:01 -0400 Subject: [PATCH] Add missing cli descriptions (#632) --- app/Console/Commands/InfoCommand.php | 5 +++++ app/Console/Commands/Location/DeleteLocationCommand.php | 5 +++++ app/Console/Commands/User/MakeUserCommand.php | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/app/Console/Commands/InfoCommand.php b/app/Console/Commands/InfoCommand.php index 42f6df2b0..926b06ef1 100644 --- a/app/Console/Commands/InfoCommand.php +++ b/app/Console/Commands/InfoCommand.php @@ -30,6 +30,11 @@ use Illuminate\Contracts\Config\Repository as ConfigRepository; class InfoCommand extends Command { + /** + * @var string + */ + protected $description = 'Displays the application, database, and email configurations along with the panel version.'; + /** * @var \Illuminate\Contracts\Config\Repository */ diff --git a/app/Console/Commands/Location/DeleteLocationCommand.php b/app/Console/Commands/Location/DeleteLocationCommand.php index b75c186f0..90dd533a9 100644 --- a/app/Console/Commands/Location/DeleteLocationCommand.php +++ b/app/Console/Commands/Location/DeleteLocationCommand.php @@ -35,6 +35,11 @@ class DeleteLocationCommand extends Command */ protected $deletionService; + /** + * @var string + */ + protected $description = 'Deletes a location from the Panel.'; + /** * @var \Illuminate\Support\Collection */ diff --git a/app/Console/Commands/User/MakeUserCommand.php b/app/Console/Commands/User/MakeUserCommand.php index 02bdd1baf..0bb681456 100644 --- a/app/Console/Commands/User/MakeUserCommand.php +++ b/app/Console/Commands/User/MakeUserCommand.php @@ -34,6 +34,11 @@ class MakeUserCommand extends Command */ protected $creationService; + /** + * @var string + */ + protected $description = 'Creates a user on the system via the CLI.'; + /** * @var string */