Skip to content

Commit

Permalink
useless condition removed
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-stanek committed Nov 9, 2024
1 parent 3e3b68e commit d3a0cb2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions app/Services/ApplicationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -776,9 +776,7 @@ public function transferRegistration(User $sourceUser, User $targetUser, User $c
// přidání všech rolí zdrojového uživatele
$targetRoles = new ArrayCollection();
foreach ($sourceUserRoles as $role) {
if (! $targetRoles->contains($role)) {
$targetRoles->add($role);
}
$targetRoles->add($role);
}

// přidání zaplacených rolí (kromě role neregistrovaný) cílového uživatele
Expand All @@ -795,9 +793,7 @@ public function transferRegistration(User $sourceUser, User $targetUser, User $c
// přidání zaplacených podakcí zdrojového uživatele
$targetSubevents = new ArrayCollection();
foreach ($sourceUserPaidSubevents as $subevent) {
if (! $targetSubevents->contains($subevent)) {
$targetSubevents->add($subevent);
}
$targetSubevents->add($subevent);
}

// odebrání podakcí, které už cílový uživatel má, ale budou mu přidány převodem
Expand Down

0 comments on commit d3a0cb2

Please sign in to comment.