1 | <?php |
||
10 | class Seat implements SeatInterface |
||
11 | { |
||
12 | /** @var SeatRepository */ |
||
13 | private $seatRepository; |
||
14 | |||
15 | /** |
||
16 | * Domain Seat constructor. |
||
17 | * |
||
18 | * @param SeatRepository $seatRepository |
||
19 | */ |
||
20 | public function __construct( |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | public function getByVenue(Venue $venue): array |
||
39 | } |
||
40 |