Add missing cli descriptions (#632)
This commit is contained in:
parent
8df5d5beaf
commit
afa328577f
3 changed files with 15 additions and 0 deletions
|
@ -30,6 +30,11 @@ use Illuminate\Contracts\Config\Repository as ConfigRepository;
|
||||||
|
|
||||||
class InfoCommand extends Command
|
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
|
* @var \Illuminate\Contracts\Config\Repository
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -35,6 +35,11 @@ class DeleteLocationCommand extends Command
|
||||||
*/
|
*/
|
||||||
protected $deletionService;
|
protected $deletionService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Deletes a location from the Panel.';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var \Illuminate\Support\Collection
|
* @var \Illuminate\Support\Collection
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -34,6 +34,11 @@ class MakeUserCommand extends Command
|
||||||
*/
|
*/
|
||||||
protected $creationService;
|
protected $creationService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Creates a user on the system via the CLI.';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue