示例#1
0
 /**
  * @param Role $role
  * @param $limit
  */
 public function increaseRoleMaxUsers(Role $role, $limit)
 {
     $role->setMaxUsers($role->getMaxUsers() + $limit);
     $this->om->persist($role);
     $this->om->flush();
 }