Exemplo n.º 1
0
 /**
  * Returns users count for provided event and status.
  *
  * @param integer $eventId
  * @param integer $status
  * @return integer
  */
 public function findEventUsersCount($eventId, $status)
 {
     return (int) $this->eventUserDao->findUsersCountByEventIdAndStatus($eventId, $status);
 }