Skip to content

Commit

Permalink
Fix constructor order
Browse files Browse the repository at this point in the history
  • Loading branch information
Aydin committed Feb 19, 2015
1 parent 688a283 commit 571088e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JhFlexiTime/Service/MissingBookingReminderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function findAndNotifyMissingBookings()
$missingBookings = $this->findMissingBookingsForUser($user, $period);

if (count($missingBookings) > 0) {
$notification = new MissingBookingsNotification($missingBookings, $period);
$notification = new MissingBookingsNotification($period, $missingBookings);
$this->notificationService->notify($notification, $user);
}
}
Expand Down

0 comments on commit 571088e

Please sign in to comment.