1 | <?php |
||
5 | class UnitAvailable |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $ID_Room |
||
10 | */ |
||
11 | protected $ID_Room = null; |
||
12 | |||
13 | /** |
||
14 | * @var string $RoomNo |
||
15 | */ |
||
16 | protected $RoomNo = null; |
||
17 | |||
18 | /** |
||
19 | * @var int $ID_RoomType |
||
20 | */ |
||
21 | protected $ID_RoomType = null; |
||
22 | |||
23 | /** |
||
24 | * @var int $ID_Address |
||
25 | */ |
||
26 | protected $ID_Address = null; |
||
27 | |||
28 | /** |
||
29 | * @var int $ID_Bedding |
||
30 | */ |
||
31 | protected $ID_Bedding = null; |
||
32 | |||
33 | /** |
||
34 | * @var int $ID_Floor |
||
35 | */ |
||
36 | protected $ID_Floor = null; |
||
37 | |||
38 | /** |
||
39 | * @var \DateTime $ADate |
||
40 | */ |
||
41 | protected $ADate = null; |
||
42 | |||
43 | /** |
||
44 | * @var boolean $IsAvailable |
||
45 | */ |
||
46 | protected $IsAvailable = null; |
||
47 | |||
48 | /** |
||
49 | * @var int $RoomCategory |
||
50 | */ |
||
51 | protected $RoomCategory = null; |
||
52 | |||
53 | /** |
||
54 | * @param int $ID_Room |
||
55 | * @param int $ID_RoomType |
||
56 | * @param int $ID_Address |
||
57 | * @param int $ID_Bedding |
||
58 | * @param int $ID_Floor |
||
59 | * @param \DateTime $ADate |
||
60 | * @param boolean $IsAvailable |
||
61 | * @param int $RoomCategory |
||
62 | */ |
||
63 | public function __construct($ID_Room, $ID_RoomType, $ID_Address, $ID_Bedding, $ID_Floor, \DateTime $ADate, $IsAvailable, $RoomCategory) |
||
74 | |||
75 | /** |
||
76 | * @return int |
||
77 | */ |
||
78 | public function getID_Room() |
||
82 | |||
83 | /** |
||
84 | * @param int $ID_Room |
||
85 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
86 | */ |
||
87 | public function setID_Room($ID_Room) |
||
92 | |||
93 | /** |
||
94 | * @return string |
||
95 | */ |
||
96 | public function getRoomNo() |
||
100 | |||
101 | /** |
||
102 | * @param string $RoomNo |
||
103 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
104 | */ |
||
105 | public function setRoomNo($RoomNo) |
||
110 | |||
111 | /** |
||
112 | * @return int |
||
113 | */ |
||
114 | public function getID_RoomType() |
||
118 | |||
119 | /** |
||
120 | * @param int $ID_RoomType |
||
121 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
122 | */ |
||
123 | public function setID_RoomType($ID_RoomType) |
||
128 | |||
129 | /** |
||
130 | * @return int |
||
131 | */ |
||
132 | public function getID_Address() |
||
136 | |||
137 | /** |
||
138 | * @param int $ID_Address |
||
139 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
140 | */ |
||
141 | public function setID_Address($ID_Address) |
||
146 | |||
147 | /** |
||
148 | * @return int |
||
149 | */ |
||
150 | public function getID_Bedding() |
||
154 | |||
155 | /** |
||
156 | * @param int $ID_Bedding |
||
157 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
158 | */ |
||
159 | public function setID_Bedding($ID_Bedding) |
||
164 | |||
165 | /** |
||
166 | * @return int |
||
167 | */ |
||
168 | public function getID_Floor() |
||
172 | |||
173 | /** |
||
174 | * @param int $ID_Floor |
||
175 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
176 | */ |
||
177 | public function setID_Floor($ID_Floor) |
||
182 | |||
183 | /** |
||
184 | * @return \DateTime |
||
185 | */ |
||
186 | public function getADate() |
||
198 | |||
199 | /** |
||
200 | * @param \DateTime $ADate |
||
201 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
202 | */ |
||
203 | public function setADate(\DateTime $ADate) |
||
208 | |||
209 | /** |
||
210 | * @return boolean |
||
211 | */ |
||
212 | public function getIsAvailable() |
||
216 | |||
217 | /** |
||
218 | * @param boolean $IsAvailable |
||
219 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
220 | */ |
||
221 | public function setIsAvailable($IsAvailable) |
||
226 | |||
227 | /** |
||
228 | * @return int |
||
229 | */ |
||
230 | public function getRoomCategory() |
||
234 | |||
235 | /** |
||
236 | * @param int $RoomCategory |
||
237 | * @return \Gueststream\PMS\IQWare\API\UnitAvailable |
||
238 | */ |
||
239 | public function setRoomCategory($RoomCategory) |
||
244 | } |
||
245 |
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..