diff --git a/src/Console/Command/MaintenanceCommand.php b/src/Console/Command/MaintenanceCommand.php index 5abb19b..c9fb8e6 100644 --- a/src/Console/Command/MaintenanceCommand.php +++ b/src/Console/Command/MaintenanceCommand.php @@ -85,7 +85,7 @@ public function __construct( $this->config = $config; $this->setName('maintenance') - ->setDescription('The Maintenance management command'); + ->setDescription('Command to manage application maintenance'); $this->addArgument('type', 'type of action [up|down]', 'up', true, true, false, function ($val) { if (!in_array($val, ['up', 'down'])) { @@ -120,6 +120,8 @@ function ($val) { $val )); } + + return $val; } ); $this->addOption( @@ -136,6 +138,8 @@ function ($val) { $val )); } + + return $val; } ); $this->addOption( @@ -159,6 +163,8 @@ function ($val) { $val )); } + + return $val; } ); $this->addOption(