public function postFind()
 {
     $numFound = $this->manager->findTranslations();
     return ['status' => 'ok', 'counter' => (int) $numFound];
 }
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $counter = $this->manager->findTranslations();
     $this->info('Done importing, processed ' . $counter . ' items!');
 }