Exemplo n.º 1
0
 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     $indexName = $this->option('index') ?: $this->indexManager->getDefaultIndex();
     $dump = $this->option('dump') ? true : false;
     $stats = $this->indexManager->stats($indexName);
     if ($dump) {
         (new Dumper())->dump($stats);
     } else {
         $this->printStats($stats);
     }
 }