1 | <?php |
||
8 | class Airac |
||
9 | { |
||
10 | /** |
||
11 | * @var \DateTime |
||
12 | */ |
||
13 | private $dateStart; |
||
14 | |||
15 | /** |
||
16 | * @var \DateTime |
||
17 | */ |
||
18 | private $dateEnd; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | private $number; |
||
24 | |||
25 | 18 | public function __construct(\DateTime $dateStart, \DateTime $dateEnd, $number) |
|
31 | |||
32 | /** |
||
33 | * @return \DateTime |
||
34 | */ |
||
35 | 18 | public function getDateStart() |
|
39 | |||
40 | /** |
||
41 | * @deprecated Use getDataStart() |
||
42 | * @return \DateTime |
||
43 | */ |
||
44 | public function getDate() |
||
48 | |||
49 | /** |
||
50 | * @return \DateTime |
||
51 | */ |
||
52 | 18 | public function getDateEnd() |
|
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | 18 | public function getNumber() |
|
64 | } |
||
65 |