Exemple #1
0
 /**
  * Get search index repository
  *
  * @return SearchIndexRepository
  */
 protected function getIndexRepository()
 {
     if ($this->indexRepository) {
         return $this->indexRepository;
     }
     $this->indexRepository = $this->getIndexManager()->getRepository('OroSearchBundle:Item');
     $this->indexRepository->setDriversClasses($this->drivers);
     $this->indexRepository->setRegistry($this->registry);
     return $this->indexRepository;
 }