diff --git a/app/Console/Commands/InfoCommand.php b/app/Console/Commands/InfoCommand.php index 42f6df2b..926b06ef 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 b75c186f..90dd533a 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 02bdd1ba..0bb68145 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 */