Exemplo n.º 1
0
 /**
  * Load all testers to database.
  *
  */
 private function loadTesters()
 {
     foreach ($this->getConfig('testers') as $name => $data) {
         $this->dataRepository->createOrUpdateTester($name, $data);
     }
     $this->dataRepository->deleteUnavailableTesters(array_keys($this->getConfig('testers')));
 }