1 | <?php |
||
5 | class BeachChairGetAvailElementsSitesForStay |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $intGUID |
||
10 | */ |
||
11 | protected $intGUID = null; |
||
12 | |||
13 | /** |
||
14 | * @var string $strLanguage |
||
15 | */ |
||
16 | protected $strLanguage = null; |
||
17 | |||
18 | /** |
||
19 | * @var \DateTime $arrDate |
||
20 | */ |
||
21 | protected $arrDate = null; |
||
22 | |||
23 | /** |
||
24 | * @var \DateTime $depDate |
||
25 | */ |
||
26 | protected $depDate = null; |
||
27 | |||
28 | /** |
||
29 | * @param int $intGUID |
||
30 | * @param string $strLanguage |
||
31 | * @param \DateTime $arrDate |
||
32 | * @param \DateTime $depDate |
||
33 | */ |
||
34 | public function __construct($intGUID, $strLanguage, \DateTime $arrDate, \DateTime $depDate) |
||
41 | |||
42 | /** |
||
43 | * @return int |
||
44 | */ |
||
45 | public function getIntGUID() |
||
49 | |||
50 | /** |
||
51 | * @param int $intGUID |
||
52 | * @return \Gueststream\PMS\IQWare\API\BeachChairGetAvailElementsSitesForStay |
||
53 | */ |
||
54 | public function setIntGUID($intGUID) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getStrLanguage() |
||
67 | |||
68 | /** |
||
69 | * @param string $strLanguage |
||
70 | * @return \Gueststream\PMS\IQWare\API\BeachChairGetAvailElementsSitesForStay |
||
71 | */ |
||
72 | public function setStrLanguage($strLanguage) |
||
77 | |||
78 | /** |
||
79 | * @return \DateTime |
||
80 | */ |
||
81 | public function getArrDate() |
||
93 | |||
94 | /** |
||
95 | * @param \DateTime $arrDate |
||
96 | * @return \Gueststream\PMS\IQWare\API\BeachChairGetAvailElementsSitesForStay |
||
97 | */ |
||
98 | public function setArrDate(\DateTime $arrDate) |
||
103 | |||
104 | /** |
||
105 | * @return \DateTime |
||
106 | */ |
||
107 | public function getDepDate() |
||
119 | |||
120 | /** |
||
121 | * @param \DateTime $depDate |
||
122 | * @return \Gueststream\PMS\IQWare\API\BeachChairGetAvailElementsSitesForStay |
||
123 | */ |
||
124 | public function setDepDate(\DateTime $depDate) |
||
129 | } |
||
130 |
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..