Exemplo n.º 1
0
Arquivo: Reset.php Projeto: newup/core
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     if (!$this->confirm('This will completely remove all installed package templates. Continue?. [yes|no]', false)) {
         $this->comment('Reset aborted by user');
         return;
     }
     $this->templateStorageEngine->reset();
     $this->info('Template storage reset');
 }