1 | <?php |
||
18 | class CabinOptions |
||
19 | { |
||
20 | /** |
||
21 | * @var Cabin[]|array |
||
22 | */ |
||
23 | private $items = []; |
||
24 | |||
25 | /** |
||
26 | * CabinOption constructor. |
||
27 | * |
||
28 | * @param Cabin[]|array $items |
||
29 | */ |
||
30 | 4 | public function __construct($items = []) |
|
34 | |||
35 | /** |
||
36 | * @return Cabin[]|array |
||
37 | */ |
||
38 | 4 | public function getOptions() |
|
42 | } |
||
43 |