setName('maintenance:disable')->setDescription('Disables maintenance mode'); parent::configure(); } /** * Disable maintenance mode * * @return bool */ protected function isEnable() { return false; } /** * Get disabled maintenance mode display string * * @return string */ protected function getDisplayString() { return 'Disabled maintenance mode'; } }