Exemplo n.º 1
0
 /**
  * Returns whether the $user can view the $attendee
  *
  * @param UserInterface     $user     The user
  * @param AttendeeInterface $attendee The attendee
  *
  * @return boolean
  */
 protected function canView(UserInterface $user, AttendeeInterface $attendee)
 {
     return $this->attendeeManager->isAdmin($user, $attendee);
 }