Complex classes like SaveReservationWithCardProcessedRBO often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use SaveReservationWithCardProcessedRBO, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
5 | class SaveReservationWithCardProcessedRBO |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var int $intGUID |
||
10 | */ |
||
11 | protected $intGUID = null; |
||
12 | |||
13 | /** |
||
14 | * @var string $strISOLanguage |
||
15 | */ |
||
16 | protected $strISOLanguage = null; |
||
17 | |||
18 | /** |
||
19 | * @var string $strFirstName |
||
20 | */ |
||
21 | protected $strFirstName = null; |
||
22 | |||
23 | /** |
||
24 | * @var string $strLastName |
||
25 | */ |
||
26 | protected $strLastName = null; |
||
27 | |||
28 | /** |
||
29 | * @var string $strCompany |
||
30 | */ |
||
31 | protected $strCompany = null; |
||
32 | |||
33 | /** |
||
34 | * @var string $strAddress1 |
||
35 | */ |
||
36 | protected $strAddress1 = null; |
||
37 | |||
38 | /** |
||
39 | * @var string $strAddress2 |
||
40 | */ |
||
41 | protected $strAddress2 = null; |
||
42 | |||
43 | /** |
||
44 | * @var string $strCity |
||
45 | */ |
||
46 | protected $strCity = null; |
||
47 | |||
48 | /** |
||
49 | * @var string $strState |
||
50 | */ |
||
51 | protected $strState = null; |
||
52 | |||
53 | /** |
||
54 | * @var string $strCountry |
||
55 | */ |
||
56 | protected $strCountry = null; |
||
57 | |||
58 | /** |
||
59 | * @var string $strZip |
||
60 | */ |
||
61 | protected $strZip = null; |
||
62 | |||
63 | /** |
||
64 | * @var string $strPhone |
||
65 | */ |
||
66 | protected $strPhone = null; |
||
67 | |||
68 | /** |
||
69 | * @var string $strEmail |
||
70 | */ |
||
71 | protected $strEmail = null; |
||
72 | |||
73 | /** |
||
74 | * @var int $intCCType |
||
75 | */ |
||
76 | protected $intCCType = null; |
||
77 | |||
78 | /** |
||
79 | * @var string $strVaultTokenGuid |
||
80 | */ |
||
81 | protected $strVaultTokenGuid = null; |
||
82 | |||
83 | /** |
||
84 | * @var int $CVV2 |
||
85 | */ |
||
86 | protected $CVV2 = null; |
||
87 | |||
88 | /** |
||
89 | * @var \DateTime $dtCCExp |
||
90 | */ |
||
91 | protected $dtCCExp = null; |
||
92 | |||
93 | /** |
||
94 | * @var \DateTime $dtArrivalDate |
||
95 | */ |
||
96 | protected $dtArrivalDate = null; |
||
97 | |||
98 | /** |
||
99 | * @var \DateTime $dtDepartureDate |
||
100 | */ |
||
101 | protected $dtDepartureDate = null; |
||
102 | |||
103 | /** |
||
104 | * @var int $intGuestCount |
||
105 | */ |
||
106 | protected $intGuestCount = null; |
||
107 | |||
108 | /** |
||
109 | * @var string $strChildren |
||
110 | */ |
||
111 | protected $strChildren = null; |
||
112 | |||
113 | /** |
||
114 | * @var int $intRateID |
||
115 | */ |
||
116 | protected $intRateID = null; |
||
117 | |||
118 | /** |
||
119 | * @var int $intRoomTypeID |
||
120 | */ |
||
121 | protected $intRoomTypeID = null; |
||
122 | |||
123 | /** |
||
124 | * @var int $intPromoPushID |
||
125 | */ |
||
126 | protected $intPromoPushID = null; |
||
127 | |||
128 | /** |
||
129 | * @var int $intPromoCodeID |
||
130 | */ |
||
131 | protected $intPromoCodeID = null; |
||
132 | |||
133 | /** |
||
134 | * @var string $strAttributes |
||
135 | */ |
||
136 | protected $strAttributes = null; |
||
137 | |||
138 | /** |
||
139 | * @var string $strLocations |
||
140 | */ |
||
141 | protected $strLocations = null; |
||
142 | |||
143 | /** |
||
144 | * @var string $strSpecialRequests |
||
145 | */ |
||
146 | protected $strSpecialRequests = null; |
||
147 | |||
148 | /** |
||
149 | * @var string $strActivityStructure |
||
150 | */ |
||
151 | protected $strActivityStructure = null; |
||
152 | |||
153 | /** |
||
154 | * @var int $intRoomQty |
||
155 | */ |
||
156 | protected $intRoomQty = null; |
||
157 | |||
158 | /** |
||
159 | * @var dstElements $dstElements |
||
160 | */ |
||
161 | protected $dstElements = null; |
||
162 | |||
163 | /** |
||
164 | * @var int $intTANo |
||
165 | */ |
||
166 | protected $intTANo = null; |
||
167 | |||
168 | /** |
||
169 | * @var string $strIATANo |
||
170 | */ |
||
171 | protected $strIATANo = null; |
||
172 | |||
173 | /** |
||
174 | * @var int $intMemNo |
||
175 | */ |
||
176 | protected $intMemNo = null; |
||
177 | |||
178 | /** |
||
179 | * @var dstGolfPackageItems $dstGolfPackageItems |
||
180 | */ |
||
181 | protected $dstGolfPackageItems = null; |
||
182 | |||
183 | /** |
||
184 | * @var int $intCondoOwnerId |
||
185 | */ |
||
186 | protected $intCondoOwnerId = null; |
||
187 | |||
188 | /** |
||
189 | * @var int $intRoomId |
||
190 | */ |
||
191 | protected $intRoomId = null; |
||
192 | |||
193 | /** |
||
194 | * @var int $intBookingCondoType |
||
195 | */ |
||
196 | protected $intBookingCondoType = null; |
||
197 | |||
198 | /** |
||
199 | * @var boolean $IsInsuranceAccepted |
||
200 | */ |
||
201 | protected $IsInsuranceAccepted = null; |
||
202 | |||
203 | /** |
||
204 | * @var int $intBuildingID |
||
205 | */ |
||
206 | protected $intBuildingID = null; |
||
207 | |||
208 | /** |
||
209 | * @var float $ReservationAmount |
||
210 | */ |
||
211 | protected $ReservationAmount = null; |
||
212 | |||
213 | /** |
||
214 | * @var string $VaultLogin |
||
215 | */ |
||
216 | protected $VaultLogin = null; |
||
217 | |||
218 | /** |
||
219 | * @var string $VaultPassword |
||
220 | */ |
||
221 | protected $VaultPassword = null; |
||
222 | |||
223 | /** |
||
224 | * @var string $ELMMarketingSource |
||
225 | */ |
||
226 | protected $ELMMarketingSource = null; |
||
227 | |||
228 | /** |
||
229 | * @var string $DayOfBirth |
||
230 | */ |
||
231 | protected $DayOfBirth = null; |
||
232 | |||
233 | /** |
||
234 | * @var string $MonthOfBirth |
||
235 | */ |
||
236 | protected $MonthOfBirth = null; |
||
237 | |||
238 | /** |
||
239 | * @var string $YearOfBirth |
||
240 | */ |
||
241 | protected $YearOfBirth = null; |
||
242 | |||
243 | /** |
||
244 | * @var string $strComments |
||
245 | */ |
||
246 | protected $strComments = null; |
||
247 | |||
248 | /** |
||
249 | * @var boolean $IsPaidByFOO |
||
250 | */ |
||
251 | protected $IsPaidByFOO = null; |
||
252 | |||
253 | /** |
||
254 | * @var string $StrListSpecialOffertApplicable |
||
255 | */ |
||
256 | protected $StrListSpecialOffertApplicable = null; |
||
257 | |||
258 | /** |
||
259 | * @var dsDailyManualRates $dsDailyManualRates |
||
260 | */ |
||
261 | protected $dsDailyManualRates = null; |
||
262 | |||
263 | /** |
||
264 | * @var boolean $IsRBO |
||
265 | */ |
||
266 | protected $IsRBO = null; |
||
267 | |||
268 | /** |
||
269 | * @var int $ID_Member |
||
270 | */ |
||
271 | protected $ID_Member = null; |
||
272 | |||
273 | /** |
||
274 | * @var boolean $IsApplySpecialOffers |
||
275 | */ |
||
276 | protected $IsApplySpecialOffers = null; |
||
277 | |||
278 | /** |
||
279 | * @var int $intBusinessSourceID |
||
280 | */ |
||
281 | protected $intBusinessSourceID = null; |
||
282 | |||
283 | /** |
||
284 | * @var dstServicesChargesALaCarte $dstServicesChargesALaCarte |
||
285 | */ |
||
286 | protected $dstServicesChargesALaCarte = null; |
||
287 | |||
288 | /** |
||
289 | * @var int $intSuiteConfigurationID |
||
290 | */ |
||
291 | protected $intSuiteConfigurationID = null; |
||
292 | |||
293 | /** |
||
294 | * @param int $intGUID |
||
295 | * @param string $strISOLanguage |
||
296 | * @param string $strFirstName |
||
297 | * @param string $strLastName |
||
298 | * @param string $strCompany |
||
299 | * @param string $strAddress1 |
||
300 | * @param string $strAddress2 |
||
301 | * @param string $strCity |
||
302 | * @param string $strState |
||
303 | * @param string $strCountry |
||
304 | * @param string $strZip |
||
305 | * @param string $strPhone |
||
306 | * @param string $strEmail |
||
307 | * @param int $intCCType |
||
308 | * @param string $strVaultTokenGuid |
||
309 | * @param int $CVV2 |
||
310 | * @param \DateTime $dtCCExp |
||
311 | * @param \DateTime $dtArrivalDate |
||
312 | * @param \DateTime $dtDepartureDate |
||
313 | * @param int $intGuestCount |
||
314 | * @param string $strChildren |
||
315 | * @param int $intRateID |
||
316 | * @param int $intRoomTypeID |
||
317 | * @param int $intPromoPushID |
||
318 | * @param int $intPromoCodeID |
||
319 | * @param string $strAttributes |
||
320 | * @param string $strLocations |
||
321 | * @param string $strSpecialRequests |
||
322 | * @param string $strActivityStructure |
||
323 | * @param int $intRoomQty |
||
324 | * @param dstElements $dstElements |
||
325 | * @param int $intTANo |
||
326 | * @param string $strIATANo |
||
327 | * @param int $intMemNo |
||
328 | * @param dstGolfPackageItems $dstGolfPackageItems |
||
329 | * @param int $intCondoOwnerId |
||
330 | * @param int $intRoomId |
||
331 | * @param int $intBookingCondoType |
||
332 | * @param boolean $IsInsuranceAccepted |
||
333 | * @param int $intBuildingID |
||
334 | * @param float $ReservationAmount |
||
335 | * @param string $VaultLogin |
||
336 | * @param string $VaultPassword |
||
337 | * @param string $ELMMarketingSource |
||
338 | * @param string $DayOfBirth |
||
339 | * @param string $MonthOfBirth |
||
340 | * @param string $YearOfBirth |
||
341 | * @param string $strComments |
||
342 | * @param boolean $IsPaidByFOO |
||
343 | * @param string $StrListSpecialOffertApplicable |
||
344 | * @param dsDailyManualRates $dsDailyManualRates |
||
345 | * @param boolean $IsRBO |
||
346 | * @param int $ID_Member |
||
347 | * @param boolean $IsApplySpecialOffers |
||
348 | * @param int $intBusinessSourceID |
||
349 | * @param dstServicesChargesALaCarte $dstServicesChargesALaCarte |
||
350 | * @param int $intSuiteConfigurationID |
||
351 | */ |
||
352 | public function __construct($intGUID, $strISOLanguage, $strFirstName, $strLastName, $strCompany, $strAddress1, $strAddress2, $strCity, $strState, $strCountry, $strZip, $strPhone, $strEmail, $intCCType, $strVaultTokenGuid, $CVV2, \DateTime $dtCCExp, \DateTime $dtArrivalDate, \DateTime $dtDepartureDate, $intGuestCount, $strChildren, $intRateID, $intRoomTypeID, $intPromoPushID, $intPromoCodeID, $strAttributes, $strLocations, $strSpecialRequests, $strActivityStructure, $intRoomQty, $dstElements, $intTANo, $strIATANo, $intMemNo, $dstGolfPackageItems, $intCondoOwnerId, $intRoomId, $intBookingCondoType, $IsInsuranceAccepted, $intBuildingID, $ReservationAmount, $VaultLogin, $VaultPassword, $ELMMarketingSource, $DayOfBirth, $MonthOfBirth, $YearOfBirth, $strComments, $IsPaidByFOO, $StrListSpecialOffertApplicable, $dsDailyManualRates, $IsRBO, $ID_Member, $IsApplySpecialOffers, $intBusinessSourceID, $dstServicesChargesALaCarte, $intSuiteConfigurationID) |
||
412 | |||
413 | /** |
||
414 | * @return int |
||
415 | */ |
||
416 | public function getIntGUID() |
||
420 | |||
421 | /** |
||
422 | * @param int $intGUID |
||
423 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
424 | */ |
||
425 | public function setIntGUID($intGUID) |
||
430 | |||
431 | /** |
||
432 | * @return string |
||
433 | */ |
||
434 | public function getStrISOLanguage() |
||
438 | |||
439 | /** |
||
440 | * @param string $strISOLanguage |
||
441 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
442 | */ |
||
443 | public function setStrISOLanguage($strISOLanguage) |
||
448 | |||
449 | /** |
||
450 | * @return string |
||
451 | */ |
||
452 | public function getStrFirstName() |
||
456 | |||
457 | /** |
||
458 | * @param string $strFirstName |
||
459 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
460 | */ |
||
461 | public function setStrFirstName($strFirstName) |
||
466 | |||
467 | /** |
||
468 | * @return string |
||
469 | */ |
||
470 | public function getStrLastName() |
||
474 | |||
475 | /** |
||
476 | * @param string $strLastName |
||
477 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
478 | */ |
||
479 | public function setStrLastName($strLastName) |
||
484 | |||
485 | /** |
||
486 | * @return string |
||
487 | */ |
||
488 | public function getStrCompany() |
||
492 | |||
493 | /** |
||
494 | * @param string $strCompany |
||
495 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
496 | */ |
||
497 | public function setStrCompany($strCompany) |
||
502 | |||
503 | /** |
||
504 | * @return string |
||
505 | */ |
||
506 | public function getStrAddress1() |
||
510 | |||
511 | /** |
||
512 | * @param string $strAddress1 |
||
513 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
514 | */ |
||
515 | public function setStrAddress1($strAddress1) |
||
520 | |||
521 | /** |
||
522 | * @return string |
||
523 | */ |
||
524 | public function getStrAddress2() |
||
528 | |||
529 | /** |
||
530 | * @param string $strAddress2 |
||
531 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
532 | */ |
||
533 | public function setStrAddress2($strAddress2) |
||
538 | |||
539 | /** |
||
540 | * @return string |
||
541 | */ |
||
542 | public function getStrCity() |
||
546 | |||
547 | /** |
||
548 | * @param string $strCity |
||
549 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
550 | */ |
||
551 | public function setStrCity($strCity) |
||
556 | |||
557 | /** |
||
558 | * @return string |
||
559 | */ |
||
560 | public function getStrState() |
||
564 | |||
565 | /** |
||
566 | * @param string $strState |
||
567 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
568 | */ |
||
569 | public function setStrState($strState) |
||
574 | |||
575 | /** |
||
576 | * @return string |
||
577 | */ |
||
578 | public function getStrCountry() |
||
582 | |||
583 | /** |
||
584 | * @param string $strCountry |
||
585 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
586 | */ |
||
587 | public function setStrCountry($strCountry) |
||
592 | |||
593 | /** |
||
594 | * @return string |
||
595 | */ |
||
596 | public function getStrZip() |
||
600 | |||
601 | /** |
||
602 | * @param string $strZip |
||
603 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
604 | */ |
||
605 | public function setStrZip($strZip) |
||
610 | |||
611 | /** |
||
612 | * @return string |
||
613 | */ |
||
614 | public function getStrPhone() |
||
618 | |||
619 | /** |
||
620 | * @param string $strPhone |
||
621 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
622 | */ |
||
623 | public function setStrPhone($strPhone) |
||
628 | |||
629 | /** |
||
630 | * @return string |
||
631 | */ |
||
632 | public function getStrEmail() |
||
636 | |||
637 | /** |
||
638 | * @param string $strEmail |
||
639 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
640 | */ |
||
641 | public function setStrEmail($strEmail) |
||
646 | |||
647 | /** |
||
648 | * @return int |
||
649 | */ |
||
650 | public function getIntCCType() |
||
654 | |||
655 | /** |
||
656 | * @param int $intCCType |
||
657 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
658 | */ |
||
659 | public function setIntCCType($intCCType) |
||
664 | |||
665 | /** |
||
666 | * @return string |
||
667 | */ |
||
668 | public function getStrVaultTokenGuid() |
||
672 | |||
673 | /** |
||
674 | * @param string $strVaultTokenGuid |
||
675 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
676 | */ |
||
677 | public function setStrVaultTokenGuid($strVaultTokenGuid) |
||
682 | |||
683 | /** |
||
684 | * @return int |
||
685 | */ |
||
686 | public function getCVV2() |
||
690 | |||
691 | /** |
||
692 | * @param int $CVV2 |
||
693 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
694 | */ |
||
695 | public function setCVV2($CVV2) |
||
700 | |||
701 | /** |
||
702 | * @return \DateTime |
||
703 | */ |
||
704 | public function getDtCCExp() |
||
716 | |||
717 | /** |
||
718 | * @param \DateTime $dtCCExp |
||
719 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
720 | */ |
||
721 | public function setDtCCExp(\DateTime $dtCCExp) |
||
726 | |||
727 | /** |
||
728 | * @return \DateTime |
||
729 | */ |
||
730 | public function getDtArrivalDate() |
||
742 | |||
743 | /** |
||
744 | * @param \DateTime $dtArrivalDate |
||
745 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
746 | */ |
||
747 | public function setDtArrivalDate(\DateTime $dtArrivalDate) |
||
752 | |||
753 | /** |
||
754 | * @return \DateTime |
||
755 | */ |
||
756 | public function getDtDepartureDate() |
||
768 | |||
769 | /** |
||
770 | * @param \DateTime $dtDepartureDate |
||
771 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
772 | */ |
||
773 | public function setDtDepartureDate(\DateTime $dtDepartureDate) |
||
778 | |||
779 | /** |
||
780 | * @return int |
||
781 | */ |
||
782 | public function getIntGuestCount() |
||
786 | |||
787 | /** |
||
788 | * @param int $intGuestCount |
||
789 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
790 | */ |
||
791 | public function setIntGuestCount($intGuestCount) |
||
796 | |||
797 | /** |
||
798 | * @return string |
||
799 | */ |
||
800 | public function getStrChildren() |
||
804 | |||
805 | /** |
||
806 | * @param string $strChildren |
||
807 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
808 | */ |
||
809 | public function setStrChildren($strChildren) |
||
814 | |||
815 | /** |
||
816 | * @return int |
||
817 | */ |
||
818 | public function getIntRateID() |
||
822 | |||
823 | /** |
||
824 | * @param int $intRateID |
||
825 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
826 | */ |
||
827 | public function setIntRateID($intRateID) |
||
832 | |||
833 | /** |
||
834 | * @return int |
||
835 | */ |
||
836 | public function getIntRoomTypeID() |
||
840 | |||
841 | /** |
||
842 | * @param int $intRoomTypeID |
||
843 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
844 | */ |
||
845 | public function setIntRoomTypeID($intRoomTypeID) |
||
850 | |||
851 | /** |
||
852 | * @return int |
||
853 | */ |
||
854 | public function getIntPromoPushID() |
||
858 | |||
859 | /** |
||
860 | * @param int $intPromoPushID |
||
861 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
862 | */ |
||
863 | public function setIntPromoPushID($intPromoPushID) |
||
868 | |||
869 | /** |
||
870 | * @return int |
||
871 | */ |
||
872 | public function getIntPromoCodeID() |
||
876 | |||
877 | /** |
||
878 | * @param int $intPromoCodeID |
||
879 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
880 | */ |
||
881 | public function setIntPromoCodeID($intPromoCodeID) |
||
886 | |||
887 | /** |
||
888 | * @return string |
||
889 | */ |
||
890 | public function getStrAttributes() |
||
894 | |||
895 | /** |
||
896 | * @param string $strAttributes |
||
897 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
898 | */ |
||
899 | public function setStrAttributes($strAttributes) |
||
904 | |||
905 | /** |
||
906 | * @return string |
||
907 | */ |
||
908 | public function getStrLocations() |
||
912 | |||
913 | /** |
||
914 | * @param string $strLocations |
||
915 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
916 | */ |
||
917 | public function setStrLocations($strLocations) |
||
922 | |||
923 | /** |
||
924 | * @return string |
||
925 | */ |
||
926 | public function getStrSpecialRequests() |
||
930 | |||
931 | /** |
||
932 | * @param string $strSpecialRequests |
||
933 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
934 | */ |
||
935 | public function setStrSpecialRequests($strSpecialRequests) |
||
940 | |||
941 | /** |
||
942 | * @return string |
||
943 | */ |
||
944 | public function getStrActivityStructure() |
||
948 | |||
949 | /** |
||
950 | * @param string $strActivityStructure |
||
951 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
952 | */ |
||
953 | public function setStrActivityStructure($strActivityStructure) |
||
958 | |||
959 | /** |
||
960 | * @return int |
||
961 | */ |
||
962 | public function getIntRoomQty() |
||
966 | |||
967 | /** |
||
968 | * @param int $intRoomQty |
||
969 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
970 | */ |
||
971 | public function setIntRoomQty($intRoomQty) |
||
976 | |||
977 | /** |
||
978 | * @return dstElements |
||
979 | */ |
||
980 | public function getDstElements() |
||
984 | |||
985 | /** |
||
986 | * @param dstElements $dstElements |
||
987 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
988 | */ |
||
989 | public function setDstElements($dstElements) |
||
994 | |||
995 | /** |
||
996 | * @return int |
||
997 | */ |
||
998 | public function getIntTANo() |
||
1002 | |||
1003 | /** |
||
1004 | * @param int $intTANo |
||
1005 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1006 | */ |
||
1007 | public function setIntTANo($intTANo) |
||
1012 | |||
1013 | /** |
||
1014 | * @return string |
||
1015 | */ |
||
1016 | public function getStrIATANo() |
||
1020 | |||
1021 | /** |
||
1022 | * @param string $strIATANo |
||
1023 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1024 | */ |
||
1025 | public function setStrIATANo($strIATANo) |
||
1030 | |||
1031 | /** |
||
1032 | * @return int |
||
1033 | */ |
||
1034 | public function getIntMemNo() |
||
1038 | |||
1039 | /** |
||
1040 | * @param int $intMemNo |
||
1041 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1042 | */ |
||
1043 | public function setIntMemNo($intMemNo) |
||
1048 | |||
1049 | /** |
||
1050 | * @return dstGolfPackageItems |
||
1051 | */ |
||
1052 | public function getDstGolfPackageItems() |
||
1056 | |||
1057 | /** |
||
1058 | * @param dstGolfPackageItems $dstGolfPackageItems |
||
1059 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1060 | */ |
||
1061 | public function setDstGolfPackageItems($dstGolfPackageItems) |
||
1066 | |||
1067 | /** |
||
1068 | * @return int |
||
1069 | */ |
||
1070 | public function getIntCondoOwnerId() |
||
1074 | |||
1075 | /** |
||
1076 | * @param int $intCondoOwnerId |
||
1077 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1078 | */ |
||
1079 | public function setIntCondoOwnerId($intCondoOwnerId) |
||
1084 | |||
1085 | /** |
||
1086 | * @return int |
||
1087 | */ |
||
1088 | public function getIntRoomId() |
||
1092 | |||
1093 | /** |
||
1094 | * @param int $intRoomId |
||
1095 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1096 | */ |
||
1097 | public function setIntRoomId($intRoomId) |
||
1102 | |||
1103 | /** |
||
1104 | * @return int |
||
1105 | */ |
||
1106 | public function getIntBookingCondoType() |
||
1110 | |||
1111 | /** |
||
1112 | * @param int $intBookingCondoType |
||
1113 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1114 | */ |
||
1115 | public function setIntBookingCondoType($intBookingCondoType) |
||
1120 | |||
1121 | /** |
||
1122 | * @return boolean |
||
1123 | */ |
||
1124 | public function getIsInsuranceAccepted() |
||
1128 | |||
1129 | /** |
||
1130 | * @param boolean $IsInsuranceAccepted |
||
1131 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1132 | */ |
||
1133 | public function setIsInsuranceAccepted($IsInsuranceAccepted) |
||
1138 | |||
1139 | /** |
||
1140 | * @return int |
||
1141 | */ |
||
1142 | public function getIntBuildingID() |
||
1146 | |||
1147 | /** |
||
1148 | * @param int $intBuildingID |
||
1149 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1150 | */ |
||
1151 | public function setIntBuildingID($intBuildingID) |
||
1156 | |||
1157 | /** |
||
1158 | * @return float |
||
1159 | */ |
||
1160 | public function getReservationAmount() |
||
1164 | |||
1165 | /** |
||
1166 | * @param float $ReservationAmount |
||
1167 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1168 | */ |
||
1169 | public function setReservationAmount($ReservationAmount) |
||
1174 | |||
1175 | /** |
||
1176 | * @return string |
||
1177 | */ |
||
1178 | public function getVaultLogin() |
||
1182 | |||
1183 | /** |
||
1184 | * @param string $VaultLogin |
||
1185 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1186 | */ |
||
1187 | public function setVaultLogin($VaultLogin) |
||
1192 | |||
1193 | /** |
||
1194 | * @return string |
||
1195 | */ |
||
1196 | public function getVaultPassword() |
||
1200 | |||
1201 | /** |
||
1202 | * @param string $VaultPassword |
||
1203 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1204 | */ |
||
1205 | public function setVaultPassword($VaultPassword) |
||
1210 | |||
1211 | /** |
||
1212 | * @return string |
||
1213 | */ |
||
1214 | public function getELMMarketingSource() |
||
1218 | |||
1219 | /** |
||
1220 | * @param string $ELMMarketingSource |
||
1221 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1222 | */ |
||
1223 | public function setELMMarketingSource($ELMMarketingSource) |
||
1228 | |||
1229 | /** |
||
1230 | * @return string |
||
1231 | */ |
||
1232 | public function getDayOfBirth() |
||
1236 | |||
1237 | /** |
||
1238 | * @param string $DayOfBirth |
||
1239 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1240 | */ |
||
1241 | public function setDayOfBirth($DayOfBirth) |
||
1246 | |||
1247 | /** |
||
1248 | * @return string |
||
1249 | */ |
||
1250 | public function getMonthOfBirth() |
||
1254 | |||
1255 | /** |
||
1256 | * @param string $MonthOfBirth |
||
1257 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1258 | */ |
||
1259 | public function setMonthOfBirth($MonthOfBirth) |
||
1264 | |||
1265 | /** |
||
1266 | * @return string |
||
1267 | */ |
||
1268 | public function getYearOfBirth() |
||
1272 | |||
1273 | /** |
||
1274 | * @param string $YearOfBirth |
||
1275 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1276 | */ |
||
1277 | public function setYearOfBirth($YearOfBirth) |
||
1282 | |||
1283 | /** |
||
1284 | * @return string |
||
1285 | */ |
||
1286 | public function getStrComments() |
||
1290 | |||
1291 | /** |
||
1292 | * @param string $strComments |
||
1293 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1294 | */ |
||
1295 | public function setStrComments($strComments) |
||
1300 | |||
1301 | /** |
||
1302 | * @return boolean |
||
1303 | */ |
||
1304 | public function getIsPaidByFOO() |
||
1308 | |||
1309 | /** |
||
1310 | * @param boolean $IsPaidByFOO |
||
1311 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1312 | */ |
||
1313 | public function setIsPaidByFOO($IsPaidByFOO) |
||
1318 | |||
1319 | /** |
||
1320 | * @return string |
||
1321 | */ |
||
1322 | public function getStrListSpecialOffertApplicable() |
||
1326 | |||
1327 | /** |
||
1328 | * @param string $StrListSpecialOffertApplicable |
||
1329 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1330 | */ |
||
1331 | public function setStrListSpecialOffertApplicable($StrListSpecialOffertApplicable) |
||
1336 | |||
1337 | /** |
||
1338 | * @return dsDailyManualRates |
||
1339 | */ |
||
1340 | public function getDsDailyManualRates() |
||
1344 | |||
1345 | /** |
||
1346 | * @param dsDailyManualRates $dsDailyManualRates |
||
1347 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1348 | */ |
||
1349 | public function setDsDailyManualRates($dsDailyManualRates) |
||
1354 | |||
1355 | /** |
||
1356 | * @return boolean |
||
1357 | */ |
||
1358 | public function getIsRBO() |
||
1362 | |||
1363 | /** |
||
1364 | * @param boolean $IsRBO |
||
1365 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1366 | */ |
||
1367 | public function setIsRBO($IsRBO) |
||
1372 | |||
1373 | /** |
||
1374 | * @return int |
||
1375 | */ |
||
1376 | public function getID_Member() |
||
1380 | |||
1381 | /** |
||
1382 | * @param int $ID_Member |
||
1383 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1384 | */ |
||
1385 | public function setID_Member($ID_Member) |
||
1390 | |||
1391 | /** |
||
1392 | * @return boolean |
||
1393 | */ |
||
1394 | public function getIsApplySpecialOffers() |
||
1398 | |||
1399 | /** |
||
1400 | * @param boolean $IsApplySpecialOffers |
||
1401 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1402 | */ |
||
1403 | public function setIsApplySpecialOffers($IsApplySpecialOffers) |
||
1408 | |||
1409 | /** |
||
1410 | * @return int |
||
1411 | */ |
||
1412 | public function getIntBusinessSourceID() |
||
1416 | |||
1417 | /** |
||
1418 | * @param int $intBusinessSourceID |
||
1419 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1420 | */ |
||
1421 | public function setIntBusinessSourceID($intBusinessSourceID) |
||
1426 | |||
1427 | /** |
||
1428 | * @return dstServicesChargesALaCarte |
||
1429 | */ |
||
1430 | public function getDstServicesChargesALaCarte() |
||
1434 | |||
1435 | /** |
||
1436 | * @param dstServicesChargesALaCarte $dstServicesChargesALaCarte |
||
1437 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1438 | */ |
||
1439 | public function setDstServicesChargesALaCarte($dstServicesChargesALaCarte) |
||
1444 | |||
1445 | /** |
||
1446 | * @return int |
||
1447 | */ |
||
1448 | public function getIntSuiteConfigurationID() |
||
1452 | |||
1453 | /** |
||
1454 | * @param int $intSuiteConfigurationID |
||
1455 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithCardProcessedRBO |
||
1456 | */ |
||
1457 | public function setIntSuiteConfigurationID($intSuiteConfigurationID) |
||
1462 | } |
||
1463 |
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..