| 1 | <?php |
||
| 5 | class TicketReservationRequest |
||
| 6 | { |
||
| 7 | private $ticketType; |
||
| 8 | private $quantity; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * TicketReservationRequest constructor. |
||
| 12 | * @param $ticketType |
||
| 13 | * @param $quantity |
||
| 14 | */ |
||
| 15 | public function __construct(TicketType $ticketType, int $quantity) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return TicketType |
||
| 27 | */ |
||
| 28 | public function getTicketType() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | public function getQuantity() |
||
| 40 | } |