1 | <?php |
||
5 | class ActivityUnitAvail |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $ID_ActivityUnit |
||
10 | */ |
||
11 | protected $ID_ActivityUnit = null; |
||
12 | |||
13 | /** |
||
14 | * @var \DateTime $aDate |
||
15 | */ |
||
16 | protected $aDate = null; |
||
17 | |||
18 | /** |
||
19 | * @var TActUnitStatus $Status |
||
20 | */ |
||
21 | protected $Status = null; |
||
22 | |||
23 | /** |
||
24 | * @var int $ID_Element |
||
25 | */ |
||
26 | protected $ID_Element = null; |
||
27 | |||
28 | /** |
||
29 | * @var int $nbPersPerElem |
||
30 | */ |
||
31 | protected $nbPersPerElem = null; |
||
32 | |||
33 | /** |
||
34 | * @var boolean $IsDepDayElem |
||
35 | */ |
||
36 | protected $IsDepDayElem = null; |
||
37 | |||
38 | /** |
||
39 | * @var float $Amount |
||
40 | */ |
||
41 | protected $Amount = null; |
||
42 | |||
43 | /** |
||
44 | * @param int $ID_ActivityUnit |
||
45 | * @param \DateTime $aDate |
||
46 | * @param TActUnitStatus $Status |
||
47 | * @param int $ID_Element |
||
48 | * @param int $nbPersPerElem |
||
49 | * @param boolean $IsDepDayElem |
||
50 | * @param float $Amount |
||
51 | */ |
||
52 | public function __construct($ID_ActivityUnit, \DateTime $aDate, $Status, $ID_Element, $nbPersPerElem, $IsDepDayElem, $Amount) |
||
62 | |||
63 | /** |
||
64 | * @return int |
||
65 | */ |
||
66 | public function getID_ActivityUnit() |
||
70 | |||
71 | /** |
||
72 | * @param int $ID_ActivityUnit |
||
73 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
74 | */ |
||
75 | public function setID_ActivityUnit($ID_ActivityUnit) |
||
80 | |||
81 | /** |
||
82 | * @return \DateTime |
||
83 | */ |
||
84 | public function getADate() |
||
96 | |||
97 | /** |
||
98 | * @param \DateTime $aDate |
||
99 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
100 | */ |
||
101 | public function setADate(\DateTime $aDate) |
||
106 | |||
107 | /** |
||
108 | * @return TActUnitStatus |
||
109 | */ |
||
110 | public function getStatus() |
||
114 | |||
115 | /** |
||
116 | * @param TActUnitStatus $Status |
||
117 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
118 | */ |
||
119 | public function setStatus($Status) |
||
124 | |||
125 | /** |
||
126 | * @return int |
||
127 | */ |
||
128 | public function getID_Element() |
||
132 | |||
133 | /** |
||
134 | * @param int $ID_Element |
||
135 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
136 | */ |
||
137 | public function setID_Element($ID_Element) |
||
142 | |||
143 | /** |
||
144 | * @return int |
||
145 | */ |
||
146 | public function getNbPersPerElem() |
||
150 | |||
151 | /** |
||
152 | * @param int $nbPersPerElem |
||
153 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
154 | */ |
||
155 | public function setNbPersPerElem($nbPersPerElem) |
||
160 | |||
161 | /** |
||
162 | * @return boolean |
||
163 | */ |
||
164 | public function getIsDepDayElem() |
||
168 | |||
169 | /** |
||
170 | * @param boolean $IsDepDayElem |
||
171 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
172 | */ |
||
173 | public function setIsDepDayElem($IsDepDayElem) |
||
178 | |||
179 | /** |
||
180 | * @return float |
||
181 | */ |
||
182 | public function getAmount() |
||
186 | |||
187 | /** |
||
188 | * @param float $Amount |
||
189 | * @return \Gueststream\PMS\IQWare\API\ActivityUnitAvail |
||
190 | */ |
||
191 | public function setAmount($Amount) |
||
196 | } |
||
197 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..