/**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $data = [];
     /** @var DomainAwareTenantParticipant $tenant */
     foreach ($this->repository->findBy([], ['name' => 'ASC']) as $tenant) {
         $data[] = ['id' => $tenant->getId(), 'name' => $tenant->getName(), 'domain' => $tenant->getDomain(), 'owner' => $tenant->getTenantOwner()->getName(), 'model' => $tenant->getSecurityModel()];
     }
     $this->table($this->headers, $data);
 }