Complex classes like SaveReservationWithECheckProcessedBackToBack 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 SaveReservationWithECheckProcessedBackToBack, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
5 | class SaveReservationWithECheckProcessedBackToBack |
||
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 \DateTime $dtArrivalDate |
||
75 | */ |
||
76 | protected $dtArrivalDate = null; |
||
77 | |||
78 | /** |
||
79 | * @var \DateTime $dtDepartureDate |
||
80 | */ |
||
81 | protected $dtDepartureDate = null; |
||
82 | |||
83 | /** |
||
84 | * @var int $intGuestCount |
||
85 | */ |
||
86 | protected $intGuestCount = null; |
||
87 | |||
88 | /** |
||
89 | * @var string $strChildren |
||
90 | */ |
||
91 | protected $strChildren = null; |
||
92 | |||
93 | /** |
||
94 | * @var int $intRateID |
||
95 | */ |
||
96 | protected $intRateID = null; |
||
97 | |||
98 | /** |
||
99 | * @var int $intRoomTypeID |
||
100 | */ |
||
101 | protected $intRoomTypeID = null; |
||
102 | |||
103 | /** |
||
104 | * @var int $intPromoPushID |
||
105 | */ |
||
106 | protected $intPromoPushID = null; |
||
107 | |||
108 | /** |
||
109 | * @var int $intPromoCodeID |
||
110 | */ |
||
111 | protected $intPromoCodeID = null; |
||
112 | |||
113 | /** |
||
114 | * @var string $strAttributes |
||
115 | */ |
||
116 | protected $strAttributes = null; |
||
117 | |||
118 | /** |
||
119 | * @var string $strLocations |
||
120 | */ |
||
121 | protected $strLocations = null; |
||
122 | |||
123 | /** |
||
124 | * @var string $strSpecialRequests |
||
125 | */ |
||
126 | protected $strSpecialRequests = null; |
||
127 | |||
128 | /** |
||
129 | * @var string $strActivityStructure |
||
130 | */ |
||
131 | protected $strActivityStructure = null; |
||
132 | |||
133 | /** |
||
134 | * @var int $intRoomQty |
||
135 | */ |
||
136 | protected $intRoomQty = null; |
||
137 | |||
138 | /** |
||
139 | * @var dstElements $dstElements |
||
140 | */ |
||
141 | protected $dstElements = null; |
||
142 | |||
143 | /** |
||
144 | * @var int $intTANo |
||
145 | */ |
||
146 | protected $intTANo = null; |
||
147 | |||
148 | /** |
||
149 | * @var string $strIATANo |
||
150 | */ |
||
151 | protected $strIATANo = null; |
||
152 | |||
153 | /** |
||
154 | * @var int $intMemNo |
||
155 | */ |
||
156 | protected $intMemNo = null; |
||
157 | |||
158 | /** |
||
159 | * @var dstGolfPackageItems $dstGolfPackageItems |
||
160 | */ |
||
161 | protected $dstGolfPackageItems = null; |
||
162 | |||
163 | /** |
||
164 | * @var int $intCondoOwnerId |
||
165 | */ |
||
166 | protected $intCondoOwnerId = null; |
||
167 | |||
168 | /** |
||
169 | * @var int $intRoomId |
||
170 | */ |
||
171 | protected $intRoomId = null; |
||
172 | |||
173 | /** |
||
174 | * @var int $intBookingCondoType |
||
175 | */ |
||
176 | protected $intBookingCondoType = null; |
||
177 | |||
178 | /** |
||
179 | * @var boolean $IsInsuranceAccepted |
||
180 | */ |
||
181 | protected $IsInsuranceAccepted = null; |
||
182 | |||
183 | /** |
||
184 | * @var int $intBuildingID |
||
185 | */ |
||
186 | protected $intBuildingID = null; |
||
187 | |||
188 | /** |
||
189 | * @var float $ReservationAmount |
||
190 | */ |
||
191 | protected $ReservationAmount = null; |
||
192 | |||
193 | /** |
||
194 | * @var string $ELMMarketingSource |
||
195 | */ |
||
196 | protected $ELMMarketingSource = null; |
||
197 | |||
198 | /** |
||
199 | * @var string $DayOfBirth |
||
200 | */ |
||
201 | protected $DayOfBirth = null; |
||
202 | |||
203 | /** |
||
204 | * @var string $MonthOfBirth |
||
205 | */ |
||
206 | protected $MonthOfBirth = null; |
||
207 | |||
208 | /** |
||
209 | * @var string $YearOfBirth |
||
210 | */ |
||
211 | protected $YearOfBirth = null; |
||
212 | |||
213 | /** |
||
214 | * @var string $strComments |
||
215 | */ |
||
216 | protected $strComments = null; |
||
217 | |||
218 | /** |
||
219 | * @var boolean $IsPaidByFOO |
||
220 | */ |
||
221 | protected $IsPaidByFOO = null; |
||
222 | |||
223 | /** |
||
224 | * @var IAB2BMode $BacktoBackMode |
||
225 | */ |
||
226 | protected $BacktoBackMode = null; |
||
227 | |||
228 | /** |
||
229 | * @var boolean $IsApplySpecialOffers |
||
230 | */ |
||
231 | protected $IsApplySpecialOffers = null; |
||
232 | |||
233 | /** |
||
234 | * @var string $strListSpecialOffertApplicable |
||
235 | */ |
||
236 | protected $strListSpecialOffertApplicable = null; |
||
237 | |||
238 | /** |
||
239 | * @var int $intBusinessSourceID |
||
240 | */ |
||
241 | protected $intBusinessSourceID = null; |
||
242 | |||
243 | /** |
||
244 | * @var dstServicesChargesALaCarte $dstServicesChargesALaCarte |
||
245 | */ |
||
246 | protected $dstServicesChargesALaCarte = null; |
||
247 | |||
248 | /** |
||
249 | * @var string $strRootingNo |
||
250 | */ |
||
251 | protected $strRootingNo = null; |
||
252 | |||
253 | /** |
||
254 | * @var string $strBankAccountNo |
||
255 | */ |
||
256 | protected $strBankAccountNo = null; |
||
257 | |||
258 | /** |
||
259 | * @var IQBankAccountType $batCheckingType |
||
260 | */ |
||
261 | protected $batCheckingType = null; |
||
262 | |||
263 | /** |
||
264 | * @var string $strBankName |
||
265 | */ |
||
266 | protected $strBankName = null; |
||
267 | |||
268 | /** |
||
269 | * @var string $strAccountName |
||
270 | */ |
||
271 | protected $strAccountName = null; |
||
272 | |||
273 | /** |
||
274 | * @var string $strCheckNo |
||
275 | */ |
||
276 | protected $strCheckNo = null; |
||
277 | |||
278 | /** |
||
279 | * @var string $strBankInstitutNo |
||
280 | */ |
||
281 | protected $strBankInstitutNo = null; |
||
282 | |||
283 | /** |
||
284 | * @var int $intSuiteConfigurationID |
||
285 | */ |
||
286 | protected $intSuiteConfigurationID = null; |
||
287 | |||
288 | /** |
||
289 | * @param int $intGUID |
||
290 | * @param string $strISOLanguage |
||
291 | * @param string $strFirstName |
||
292 | * @param string $strLastName |
||
293 | * @param string $strCompany |
||
294 | * @param string $strAddress1 |
||
295 | * @param string $strAddress2 |
||
296 | * @param string $strCity |
||
297 | * @param string $strState |
||
298 | * @param string $strCountry |
||
299 | * @param string $strZip |
||
300 | * @param string $strPhone |
||
301 | * @param string $strEmail |
||
302 | * @param \DateTime $dtArrivalDate |
||
303 | * @param \DateTime $dtDepartureDate |
||
304 | * @param int $intGuestCount |
||
305 | * @param string $strChildren |
||
306 | * @param int $intRateID |
||
307 | * @param int $intRoomTypeID |
||
308 | * @param int $intPromoPushID |
||
309 | * @param int $intPromoCodeID |
||
310 | * @param string $strAttributes |
||
311 | * @param string $strLocations |
||
312 | * @param string $strSpecialRequests |
||
313 | * @param string $strActivityStructure |
||
314 | * @param int $intRoomQty |
||
315 | * @param dstElements $dstElements |
||
316 | * @param int $intTANo |
||
317 | * @param string $strIATANo |
||
318 | * @param int $intMemNo |
||
319 | * @param dstGolfPackageItems $dstGolfPackageItems |
||
320 | * @param int $intCondoOwnerId |
||
321 | * @param int $intRoomId |
||
322 | * @param int $intBookingCondoType |
||
323 | * @param boolean $IsInsuranceAccepted |
||
324 | * @param int $intBuildingID |
||
325 | * @param float $ReservationAmount |
||
326 | * @param string $ELMMarketingSource |
||
327 | * @param string $DayOfBirth |
||
328 | * @param string $MonthOfBirth |
||
329 | * @param string $YearOfBirth |
||
330 | * @param string $strComments |
||
331 | * @param boolean $IsPaidByFOO |
||
332 | * @param IAB2BMode $BacktoBackMode |
||
333 | * @param boolean $IsApplySpecialOffers |
||
334 | * @param string $strListSpecialOffertApplicable |
||
335 | * @param int $intBusinessSourceID |
||
336 | * @param dstServicesChargesALaCarte $dstServicesChargesALaCarte |
||
337 | * @param string $strRootingNo |
||
338 | * @param string $strBankAccountNo |
||
339 | * @param IQBankAccountType $batCheckingType |
||
340 | * @param string $strBankName |
||
341 | * @param string $strAccountName |
||
342 | * @param string $strCheckNo |
||
343 | * @param string $strBankInstitutNo |
||
344 | * @param int $intSuiteConfigurationID |
||
345 | */ |
||
346 | public function __construct($intGUID, $strISOLanguage, $strFirstName, $strLastName, $strCompany, $strAddress1, $strAddress2, $strCity, $strState, $strCountry, $strZip, $strPhone, $strEmail, \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, $ELMMarketingSource, $DayOfBirth, $MonthOfBirth, $YearOfBirth, $strComments, $IsPaidByFOO, $BacktoBackMode, $IsApplySpecialOffers, $strListSpecialOffertApplicable, $intBusinessSourceID, $dstServicesChargesALaCarte, $strRootingNo, $strBankAccountNo, $batCheckingType, $strBankName, $strAccountName, $strCheckNo, $strBankInstitutNo, $intSuiteConfigurationID) |
||
405 | |||
406 | /** |
||
407 | * @return int |
||
408 | */ |
||
409 | public function getIntGUID() |
||
413 | |||
414 | /** |
||
415 | * @param int $intGUID |
||
416 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
417 | */ |
||
418 | public function setIntGUID($intGUID) |
||
423 | |||
424 | /** |
||
425 | * @return string |
||
426 | */ |
||
427 | public function getStrISOLanguage() |
||
431 | |||
432 | /** |
||
433 | * @param string $strISOLanguage |
||
434 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
435 | */ |
||
436 | public function setStrISOLanguage($strISOLanguage) |
||
441 | |||
442 | /** |
||
443 | * @return string |
||
444 | */ |
||
445 | public function getStrFirstName() |
||
449 | |||
450 | /** |
||
451 | * @param string $strFirstName |
||
452 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
453 | */ |
||
454 | public function setStrFirstName($strFirstName) |
||
459 | |||
460 | /** |
||
461 | * @return string |
||
462 | */ |
||
463 | public function getStrLastName() |
||
467 | |||
468 | /** |
||
469 | * @param string $strLastName |
||
470 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
471 | */ |
||
472 | public function setStrLastName($strLastName) |
||
477 | |||
478 | /** |
||
479 | * @return string |
||
480 | */ |
||
481 | public function getStrCompany() |
||
485 | |||
486 | /** |
||
487 | * @param string $strCompany |
||
488 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
489 | */ |
||
490 | public function setStrCompany($strCompany) |
||
495 | |||
496 | /** |
||
497 | * @return string |
||
498 | */ |
||
499 | public function getStrAddress1() |
||
503 | |||
504 | /** |
||
505 | * @param string $strAddress1 |
||
506 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
507 | */ |
||
508 | public function setStrAddress1($strAddress1) |
||
513 | |||
514 | /** |
||
515 | * @return string |
||
516 | */ |
||
517 | public function getStrAddress2() |
||
521 | |||
522 | /** |
||
523 | * @param string $strAddress2 |
||
524 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
525 | */ |
||
526 | public function setStrAddress2($strAddress2) |
||
531 | |||
532 | /** |
||
533 | * @return string |
||
534 | */ |
||
535 | public function getStrCity() |
||
539 | |||
540 | /** |
||
541 | * @param string $strCity |
||
542 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
543 | */ |
||
544 | public function setStrCity($strCity) |
||
549 | |||
550 | /** |
||
551 | * @return string |
||
552 | */ |
||
553 | public function getStrState() |
||
557 | |||
558 | /** |
||
559 | * @param string $strState |
||
560 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
561 | */ |
||
562 | public function setStrState($strState) |
||
567 | |||
568 | /** |
||
569 | * @return string |
||
570 | */ |
||
571 | public function getStrCountry() |
||
575 | |||
576 | /** |
||
577 | * @param string $strCountry |
||
578 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
579 | */ |
||
580 | public function setStrCountry($strCountry) |
||
585 | |||
586 | /** |
||
587 | * @return string |
||
588 | */ |
||
589 | public function getStrZip() |
||
593 | |||
594 | /** |
||
595 | * @param string $strZip |
||
596 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
597 | */ |
||
598 | public function setStrZip($strZip) |
||
603 | |||
604 | /** |
||
605 | * @return string |
||
606 | */ |
||
607 | public function getStrPhone() |
||
611 | |||
612 | /** |
||
613 | * @param string $strPhone |
||
614 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
615 | */ |
||
616 | public function setStrPhone($strPhone) |
||
621 | |||
622 | /** |
||
623 | * @return string |
||
624 | */ |
||
625 | public function getStrEmail() |
||
629 | |||
630 | /** |
||
631 | * @param string $strEmail |
||
632 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
633 | */ |
||
634 | public function setStrEmail($strEmail) |
||
639 | |||
640 | /** |
||
641 | * @return \DateTime |
||
642 | */ |
||
643 | public function getDtArrivalDate() |
||
655 | |||
656 | /** |
||
657 | * @param \DateTime $dtArrivalDate |
||
658 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
659 | */ |
||
660 | public function setDtArrivalDate(\DateTime $dtArrivalDate) |
||
665 | |||
666 | /** |
||
667 | * @return \DateTime |
||
668 | */ |
||
669 | public function getDtDepartureDate() |
||
681 | |||
682 | /** |
||
683 | * @param \DateTime $dtDepartureDate |
||
684 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
685 | */ |
||
686 | public function setDtDepartureDate(\DateTime $dtDepartureDate) |
||
691 | |||
692 | /** |
||
693 | * @return int |
||
694 | */ |
||
695 | public function getIntGuestCount() |
||
699 | |||
700 | /** |
||
701 | * @param int $intGuestCount |
||
702 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
703 | */ |
||
704 | public function setIntGuestCount($intGuestCount) |
||
709 | |||
710 | /** |
||
711 | * @return string |
||
712 | */ |
||
713 | public function getStrChildren() |
||
717 | |||
718 | /** |
||
719 | * @param string $strChildren |
||
720 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
721 | */ |
||
722 | public function setStrChildren($strChildren) |
||
727 | |||
728 | /** |
||
729 | * @return int |
||
730 | */ |
||
731 | public function getIntRateID() |
||
735 | |||
736 | /** |
||
737 | * @param int $intRateID |
||
738 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
739 | */ |
||
740 | public function setIntRateID($intRateID) |
||
745 | |||
746 | /** |
||
747 | * @return int |
||
748 | */ |
||
749 | public function getIntRoomTypeID() |
||
753 | |||
754 | /** |
||
755 | * @param int $intRoomTypeID |
||
756 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
757 | */ |
||
758 | public function setIntRoomTypeID($intRoomTypeID) |
||
763 | |||
764 | /** |
||
765 | * @return int |
||
766 | */ |
||
767 | public function getIntPromoPushID() |
||
771 | |||
772 | /** |
||
773 | * @param int $intPromoPushID |
||
774 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
775 | */ |
||
776 | public function setIntPromoPushID($intPromoPushID) |
||
781 | |||
782 | /** |
||
783 | * @return int |
||
784 | */ |
||
785 | public function getIntPromoCodeID() |
||
789 | |||
790 | /** |
||
791 | * @param int $intPromoCodeID |
||
792 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
793 | */ |
||
794 | public function setIntPromoCodeID($intPromoCodeID) |
||
799 | |||
800 | /** |
||
801 | * @return string |
||
802 | */ |
||
803 | public function getStrAttributes() |
||
807 | |||
808 | /** |
||
809 | * @param string $strAttributes |
||
810 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
811 | */ |
||
812 | public function setStrAttributes($strAttributes) |
||
817 | |||
818 | /** |
||
819 | * @return string |
||
820 | */ |
||
821 | public function getStrLocations() |
||
825 | |||
826 | /** |
||
827 | * @param string $strLocations |
||
828 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
829 | */ |
||
830 | public function setStrLocations($strLocations) |
||
835 | |||
836 | /** |
||
837 | * @return string |
||
838 | */ |
||
839 | public function getStrSpecialRequests() |
||
843 | |||
844 | /** |
||
845 | * @param string $strSpecialRequests |
||
846 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
847 | */ |
||
848 | public function setStrSpecialRequests($strSpecialRequests) |
||
853 | |||
854 | /** |
||
855 | * @return string |
||
856 | */ |
||
857 | public function getStrActivityStructure() |
||
861 | |||
862 | /** |
||
863 | * @param string $strActivityStructure |
||
864 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
865 | */ |
||
866 | public function setStrActivityStructure($strActivityStructure) |
||
871 | |||
872 | /** |
||
873 | * @return int |
||
874 | */ |
||
875 | public function getIntRoomQty() |
||
879 | |||
880 | /** |
||
881 | * @param int $intRoomQty |
||
882 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
883 | */ |
||
884 | public function setIntRoomQty($intRoomQty) |
||
889 | |||
890 | /** |
||
891 | * @return dstElements |
||
892 | */ |
||
893 | public function getDstElements() |
||
897 | |||
898 | /** |
||
899 | * @param dstElements $dstElements |
||
900 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
901 | */ |
||
902 | public function setDstElements($dstElements) |
||
907 | |||
908 | /** |
||
909 | * @return int |
||
910 | */ |
||
911 | public function getIntTANo() |
||
915 | |||
916 | /** |
||
917 | * @param int $intTANo |
||
918 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
919 | */ |
||
920 | public function setIntTANo($intTANo) |
||
925 | |||
926 | /** |
||
927 | * @return string |
||
928 | */ |
||
929 | public function getStrIATANo() |
||
933 | |||
934 | /** |
||
935 | * @param string $strIATANo |
||
936 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
937 | */ |
||
938 | public function setStrIATANo($strIATANo) |
||
943 | |||
944 | /** |
||
945 | * @return int |
||
946 | */ |
||
947 | public function getIntMemNo() |
||
951 | |||
952 | /** |
||
953 | * @param int $intMemNo |
||
954 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
955 | */ |
||
956 | public function setIntMemNo($intMemNo) |
||
961 | |||
962 | /** |
||
963 | * @return dstGolfPackageItems |
||
964 | */ |
||
965 | public function getDstGolfPackageItems() |
||
969 | |||
970 | /** |
||
971 | * @param dstGolfPackageItems $dstGolfPackageItems |
||
972 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
973 | */ |
||
974 | public function setDstGolfPackageItems($dstGolfPackageItems) |
||
979 | |||
980 | /** |
||
981 | * @return int |
||
982 | */ |
||
983 | public function getIntCondoOwnerId() |
||
987 | |||
988 | /** |
||
989 | * @param int $intCondoOwnerId |
||
990 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
991 | */ |
||
992 | public function setIntCondoOwnerId($intCondoOwnerId) |
||
997 | |||
998 | /** |
||
999 | * @return int |
||
1000 | */ |
||
1001 | public function getIntRoomId() |
||
1005 | |||
1006 | /** |
||
1007 | * @param int $intRoomId |
||
1008 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1009 | */ |
||
1010 | public function setIntRoomId($intRoomId) |
||
1015 | |||
1016 | /** |
||
1017 | * @return int |
||
1018 | */ |
||
1019 | public function getIntBookingCondoType() |
||
1023 | |||
1024 | /** |
||
1025 | * @param int $intBookingCondoType |
||
1026 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1027 | */ |
||
1028 | public function setIntBookingCondoType($intBookingCondoType) |
||
1033 | |||
1034 | /** |
||
1035 | * @return boolean |
||
1036 | */ |
||
1037 | public function getIsInsuranceAccepted() |
||
1041 | |||
1042 | /** |
||
1043 | * @param boolean $IsInsuranceAccepted |
||
1044 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1045 | */ |
||
1046 | public function setIsInsuranceAccepted($IsInsuranceAccepted) |
||
1051 | |||
1052 | /** |
||
1053 | * @return int |
||
1054 | */ |
||
1055 | public function getIntBuildingID() |
||
1059 | |||
1060 | /** |
||
1061 | * @param int $intBuildingID |
||
1062 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1063 | */ |
||
1064 | public function setIntBuildingID($intBuildingID) |
||
1069 | |||
1070 | /** |
||
1071 | * @return float |
||
1072 | */ |
||
1073 | public function getReservationAmount() |
||
1077 | |||
1078 | /** |
||
1079 | * @param float $ReservationAmount |
||
1080 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1081 | */ |
||
1082 | public function setReservationAmount($ReservationAmount) |
||
1087 | |||
1088 | /** |
||
1089 | * @return string |
||
1090 | */ |
||
1091 | public function getELMMarketingSource() |
||
1095 | |||
1096 | /** |
||
1097 | * @param string $ELMMarketingSource |
||
1098 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1099 | */ |
||
1100 | public function setELMMarketingSource($ELMMarketingSource) |
||
1105 | |||
1106 | /** |
||
1107 | * @return string |
||
1108 | */ |
||
1109 | public function getDayOfBirth() |
||
1113 | |||
1114 | /** |
||
1115 | * @param string $DayOfBirth |
||
1116 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1117 | */ |
||
1118 | public function setDayOfBirth($DayOfBirth) |
||
1123 | |||
1124 | /** |
||
1125 | * @return string |
||
1126 | */ |
||
1127 | public function getMonthOfBirth() |
||
1131 | |||
1132 | /** |
||
1133 | * @param string $MonthOfBirth |
||
1134 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1135 | */ |
||
1136 | public function setMonthOfBirth($MonthOfBirth) |
||
1141 | |||
1142 | /** |
||
1143 | * @return string |
||
1144 | */ |
||
1145 | public function getYearOfBirth() |
||
1149 | |||
1150 | /** |
||
1151 | * @param string $YearOfBirth |
||
1152 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1153 | */ |
||
1154 | public function setYearOfBirth($YearOfBirth) |
||
1159 | |||
1160 | /** |
||
1161 | * @return string |
||
1162 | */ |
||
1163 | public function getStrComments() |
||
1167 | |||
1168 | /** |
||
1169 | * @param string $strComments |
||
1170 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1171 | */ |
||
1172 | public function setStrComments($strComments) |
||
1177 | |||
1178 | /** |
||
1179 | * @return boolean |
||
1180 | */ |
||
1181 | public function getIsPaidByFOO() |
||
1185 | |||
1186 | /** |
||
1187 | * @param boolean $IsPaidByFOO |
||
1188 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1189 | */ |
||
1190 | public function setIsPaidByFOO($IsPaidByFOO) |
||
1195 | |||
1196 | /** |
||
1197 | * @return IAB2BMode |
||
1198 | */ |
||
1199 | public function getBacktoBackMode() |
||
1203 | |||
1204 | /** |
||
1205 | * @param IAB2BMode $BacktoBackMode |
||
1206 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1207 | */ |
||
1208 | public function setBacktoBackMode($BacktoBackMode) |
||
1213 | |||
1214 | /** |
||
1215 | * @return boolean |
||
1216 | */ |
||
1217 | public function getIsApplySpecialOffers() |
||
1221 | |||
1222 | /** |
||
1223 | * @param boolean $IsApplySpecialOffers |
||
1224 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1225 | */ |
||
1226 | public function setIsApplySpecialOffers($IsApplySpecialOffers) |
||
1231 | |||
1232 | /** |
||
1233 | * @return string |
||
1234 | */ |
||
1235 | public function getStrListSpecialOffertApplicable() |
||
1239 | |||
1240 | /** |
||
1241 | * @param string $strListSpecialOffertApplicable |
||
1242 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1243 | */ |
||
1244 | public function setStrListSpecialOffertApplicable($strListSpecialOffertApplicable) |
||
1249 | |||
1250 | /** |
||
1251 | * @return int |
||
1252 | */ |
||
1253 | public function getIntBusinessSourceID() |
||
1257 | |||
1258 | /** |
||
1259 | * @param int $intBusinessSourceID |
||
1260 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1261 | */ |
||
1262 | public function setIntBusinessSourceID($intBusinessSourceID) |
||
1267 | |||
1268 | /** |
||
1269 | * @return dstServicesChargesALaCarte |
||
1270 | */ |
||
1271 | public function getDstServicesChargesALaCarte() |
||
1275 | |||
1276 | /** |
||
1277 | * @param dstServicesChargesALaCarte $dstServicesChargesALaCarte |
||
1278 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1279 | */ |
||
1280 | public function setDstServicesChargesALaCarte($dstServicesChargesALaCarte) |
||
1285 | |||
1286 | /** |
||
1287 | * @return string |
||
1288 | */ |
||
1289 | public function getStrRootingNo() |
||
1293 | |||
1294 | /** |
||
1295 | * @param string $strRootingNo |
||
1296 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1297 | */ |
||
1298 | public function setStrRootingNo($strRootingNo) |
||
1303 | |||
1304 | /** |
||
1305 | * @return string |
||
1306 | */ |
||
1307 | public function getStrBankAccountNo() |
||
1311 | |||
1312 | /** |
||
1313 | * @param string $strBankAccountNo |
||
1314 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1315 | */ |
||
1316 | public function setStrBankAccountNo($strBankAccountNo) |
||
1321 | |||
1322 | /** |
||
1323 | * @return IQBankAccountType |
||
1324 | */ |
||
1325 | public function getBatCheckingType() |
||
1329 | |||
1330 | /** |
||
1331 | * @param IQBankAccountType $batCheckingType |
||
1332 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1333 | */ |
||
1334 | public function setBatCheckingType($batCheckingType) |
||
1339 | |||
1340 | /** |
||
1341 | * @return string |
||
1342 | */ |
||
1343 | public function getStrBankName() |
||
1347 | |||
1348 | /** |
||
1349 | * @param string $strBankName |
||
1350 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1351 | */ |
||
1352 | public function setStrBankName($strBankName) |
||
1357 | |||
1358 | /** |
||
1359 | * @return string |
||
1360 | */ |
||
1361 | public function getStrAccountName() |
||
1365 | |||
1366 | /** |
||
1367 | * @param string $strAccountName |
||
1368 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1369 | */ |
||
1370 | public function setStrAccountName($strAccountName) |
||
1375 | |||
1376 | /** |
||
1377 | * @return string |
||
1378 | */ |
||
1379 | public function getStrCheckNo() |
||
1383 | |||
1384 | /** |
||
1385 | * @param string $strCheckNo |
||
1386 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1387 | */ |
||
1388 | public function setStrCheckNo($strCheckNo) |
||
1393 | |||
1394 | /** |
||
1395 | * @return string |
||
1396 | */ |
||
1397 | public function getStrBankInstitutNo() |
||
1401 | |||
1402 | /** |
||
1403 | * @param string $strBankInstitutNo |
||
1404 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1405 | */ |
||
1406 | public function setStrBankInstitutNo($strBankInstitutNo) |
||
1411 | |||
1412 | /** |
||
1413 | * @return int |
||
1414 | */ |
||
1415 | public function getIntSuiteConfigurationID() |
||
1419 | |||
1420 | /** |
||
1421 | * @param int $intSuiteConfigurationID |
||
1422 | * @return \Gueststream\PMS\IQWare\API\SaveReservationWithECheckProcessedBackToBack |
||
1423 | */ |
||
1424 | public function setIntSuiteConfigurationID($intSuiteConfigurationID) |
||
1429 | } |
||
1430 |
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..