comment('2fauth:reset-demo can only run when isDemoApp option is On'); return; } if ($this->option('no-confirm')) { $demo = 'demo'; } else { $this->line('This will reset the app in order to run a clean and fresh demo.'); $demo = $this->ask('To prevent any mistake please type the word "demo" to go on'); } if ($demo === 'demo') { $this->resetIcons(); $this->resetDB('DemoSeeder'); $this->info('Demo app refreshed'); } else { $this->comment('Bad confirmation word, nothing appened'); } } }