Example #1
0
 /**
  * @param int $page
  * @param int $max
  *
  * @return \PagerFanta\PagerFanta
  */
 public function getAllGroups($page, $max = 50)
 {
     $query = $this->groupRepo->findAll(false);
     return $this->pagerFactory->createPager($query, $page, $max);
 }