1 | <?php |
||
5 | class ContractsBank |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $ID_CondoOwner |
||
10 | */ |
||
11 | protected $ID_CondoOwner = null; |
||
12 | |||
13 | /** |
||
14 | * @var string $Description |
||
15 | */ |
||
16 | protected $Description = null; |
||
17 | |||
18 | /** |
||
19 | * @var \DateTime $BeginDateSeason |
||
20 | */ |
||
21 | protected $BeginDateSeason = null; |
||
22 | |||
23 | /** |
||
24 | * @var \DateTime $EndDateSeason |
||
25 | */ |
||
26 | protected $EndDateSeason = null; |
||
27 | |||
28 | /** |
||
29 | * @var int $InitialBank |
||
30 | */ |
||
31 | protected $InitialBank = null; |
||
32 | |||
33 | /** |
||
34 | * @var int $Promised |
||
35 | */ |
||
36 | protected $Promised = null; |
||
37 | |||
38 | /** |
||
39 | * @var int $UsedBank |
||
40 | */ |
||
41 | protected $UsedBank = null; |
||
42 | |||
43 | /** |
||
44 | * @var boolean $IsCurrentSeason |
||
45 | */ |
||
46 | protected $IsCurrentSeason = null; |
||
47 | |||
48 | /** |
||
49 | * @param int $ID_CondoOwner |
||
50 | * @param string $Description |
||
51 | * @param \DateTime $BeginDateSeason |
||
52 | * @param \DateTime $EndDateSeason |
||
53 | * @param int $InitialBank |
||
54 | * @param int $Promised |
||
55 | * @param int $UsedBank |
||
56 | * @param boolean $IsCurrentSeason |
||
57 | */ |
||
58 | public function __construct($ID_CondoOwner, $Description, \DateTime $BeginDateSeason, \DateTime $EndDateSeason, $InitialBank, $Promised, $UsedBank, $IsCurrentSeason) |
||
69 | |||
70 | /** |
||
71 | * @return int |
||
72 | */ |
||
73 | public function getID_CondoOwner() |
||
77 | |||
78 | /** |
||
79 | * @param int $ID_CondoOwner |
||
80 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
81 | */ |
||
82 | public function setID_CondoOwner($ID_CondoOwner) |
||
87 | |||
88 | /** |
||
89 | * @return string |
||
90 | */ |
||
91 | public function getDescription() |
||
95 | |||
96 | /** |
||
97 | * @param string $Description |
||
98 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
99 | */ |
||
100 | public function setDescription($Description) |
||
105 | |||
106 | /** |
||
107 | * @return \DateTime |
||
108 | */ |
||
109 | public function getBeginDateSeason() |
||
121 | |||
122 | /** |
||
123 | * @param \DateTime $BeginDateSeason |
||
124 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
125 | */ |
||
126 | public function setBeginDateSeason(\DateTime $BeginDateSeason) |
||
131 | |||
132 | /** |
||
133 | * @return \DateTime |
||
134 | */ |
||
135 | public function getEndDateSeason() |
||
147 | |||
148 | /** |
||
149 | * @param \DateTime $EndDateSeason |
||
150 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
151 | */ |
||
152 | public function setEndDateSeason(\DateTime $EndDateSeason) |
||
157 | |||
158 | /** |
||
159 | * @return int |
||
160 | */ |
||
161 | public function getInitialBank() |
||
165 | |||
166 | /** |
||
167 | * @param int $InitialBank |
||
168 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
169 | */ |
||
170 | public function setInitialBank($InitialBank) |
||
175 | |||
176 | /** |
||
177 | * @return int |
||
178 | */ |
||
179 | public function getPromised() |
||
183 | |||
184 | /** |
||
185 | * @param int $Promised |
||
186 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
187 | */ |
||
188 | public function setPromised($Promised) |
||
193 | |||
194 | /** |
||
195 | * @return int |
||
196 | */ |
||
197 | public function getUsedBank() |
||
201 | |||
202 | /** |
||
203 | * @param int $UsedBank |
||
204 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
205 | */ |
||
206 | public function setUsedBank($UsedBank) |
||
211 | |||
212 | /** |
||
213 | * @return boolean |
||
214 | */ |
||
215 | public function getIsCurrentSeason() |
||
219 | |||
220 | /** |
||
221 | * @param boolean $IsCurrentSeason |
||
222 | * @return \Gueststream\PMS\IQWare\API\ContractsBank |
||
223 | */ |
||
224 | public function setIsCurrentSeason($IsCurrentSeason) |
||
229 | } |
||
230 |
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..