1 | <?php |
||
5 | class WebRes_GetCondoOwnerRoomInfo |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $intGUID |
||
10 | */ |
||
11 | protected $intGUID = null; |
||
12 | |||
13 | /** |
||
14 | * @var string $userName |
||
15 | */ |
||
16 | protected $userName = null; |
||
17 | |||
18 | /** |
||
19 | * @var string $password |
||
20 | */ |
||
21 | protected $password = null; |
||
22 | |||
23 | /** |
||
24 | * @var string $strISOLanguage |
||
25 | */ |
||
26 | protected $strISOLanguage = null; |
||
27 | |||
28 | /** |
||
29 | * @var \DateTime $aDate |
||
30 | */ |
||
31 | protected $aDate = null; |
||
32 | |||
33 | /** |
||
34 | * @param int $intGUID |
||
35 | * @param string $userName |
||
36 | * @param string $password |
||
37 | * @param string $strISOLanguage |
||
38 | * @param \DateTime $aDate |
||
39 | */ |
||
40 | public function __construct($intGUID, $userName, $password, $strISOLanguage, \DateTime $aDate) |
||
48 | |||
49 | /** |
||
50 | * @return int |
||
51 | */ |
||
52 | public function getIntGUID() |
||
56 | |||
57 | /** |
||
58 | * @param int $intGUID |
||
59 | * @return \Gueststream\PMS\IQWare\API\WebRes_GetCondoOwnerRoomInfo |
||
60 | */ |
||
61 | public function setIntGUID($intGUID) |
||
66 | |||
67 | /** |
||
68 | * @return string |
||
69 | */ |
||
70 | public function getUserName() |
||
74 | |||
75 | /** |
||
76 | * @param string $userName |
||
77 | * @return \Gueststream\PMS\IQWare\API\WebRes_GetCondoOwnerRoomInfo |
||
78 | */ |
||
79 | public function setUserName($userName) |
||
84 | |||
85 | /** |
||
86 | * @return string |
||
87 | */ |
||
88 | public function getPassword() |
||
92 | |||
93 | /** |
||
94 | * @param string $password |
||
95 | * @return \Gueststream\PMS\IQWare\API\WebRes_GetCondoOwnerRoomInfo |
||
96 | */ |
||
97 | public function setPassword($password) |
||
102 | |||
103 | /** |
||
104 | * @return string |
||
105 | */ |
||
106 | public function getStrISOLanguage() |
||
110 | |||
111 | /** |
||
112 | * @param string $strISOLanguage |
||
113 | * @return \Gueststream\PMS\IQWare\API\WebRes_GetCondoOwnerRoomInfo |
||
114 | */ |
||
115 | public function setStrISOLanguage($strISOLanguage) |
||
120 | |||
121 | /** |
||
122 | * @return \DateTime |
||
123 | */ |
||
124 | public function getADate() |
||
136 | |||
137 | /** |
||
138 | * @param \DateTime $aDate |
||
139 | * @return \Gueststream\PMS\IQWare\API\WebRes_GetCondoOwnerRoomInfo |
||
140 | */ |
||
141 | public function setADate(\DateTime $aDate) |
||
146 | } |
||
147 |
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..