confirmToProceed('This will DESTROY all database tables.')) { return; } UpdateManager::instance() ->setNotesOutput($this->output) ->uninstall() ; } /** * Get the console command options. */ protected function getOptions() { return [ ['force', null, InputOption::VALUE_NONE, 'Force the operation to run.'], ]; } /** * Get the default confirmation callback. * @return \Closure */ protected function getDefaultConfirmCallback() { return function () { return true; }; } }