1 | <?php |
||
9 | class GiveAwayBookInReservation |
||
10 | { |
||
11 | /** @var ReservationRepository */ |
||
12 | private $reservations; |
||
13 | |||
14 | /** |
||
15 | * @param ReservationRepository $reservations |
||
16 | */ |
||
17 | public function __construct(ReservationRepository $reservations) |
||
21 | |||
22 | /** |
||
23 | * @param UuidInterface $reservationId |
||
24 | * @param \DateTime $givenAwayAt |
||
25 | * |
||
26 | * @throws BookInReservationAlreadyGivenAway |
||
27 | */ |
||
28 | public function giveAway(UuidInterface $reservationId, \DateTime $givenAwayAt) |
||
40 | } |
||
41 |