Exemple #1
0
 /**
  * @param string $q
  * @return ICollection|Addon[]
  */
 public function findByQuery($q)
 {
     $collection = $this->addonRepository->findByQuery($q, 'popularity');
     $collection = $this->formatLimit($collection);
     return $collection;
 }