@@ -38,7 +38,7 @@ |
||
38 | 38 | |
39 | 39 | public function __construct($fareQualifier, $rateCategory) |
40 | 40 | { |
41 | - $this->fareQualifier = (string)$fareQualifier; |
|
42 | - $this->rateCategory = (string)$rateCategory; |
|
41 | + $this->fareQualifier = (string) $fareQualifier; |
|
42 | + $this->rateCategory = (string) $rateCategory; |
|
43 | 43 | } |
44 | 44 | } |
@@ -35,6 +35,6 @@ |
||
35 | 35 | |
36 | 36 | public function __construct($otherCompany) |
37 | 37 | { |
38 | - $this->otherCompany = (string)$otherCompany; |
|
38 | + $this->otherCompany = (string) $otherCompany; |
|
39 | 39 | } |
40 | 40 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | |
41 | 41 | public function __construct(ItineraryInfo $itineraryInfo) |
42 | 42 | { |
43 | - $this->origin = (string)$itineraryInfo->origin; |
|
44 | - $this->destination = (string)$itineraryInfo->destination; |
|
43 | + $this->origin = (string) $itineraryInfo->origin; |
|
44 | + $this->destination = (string) $itineraryInfo->destination; |
|
45 | 45 | } |
46 | 46 | } |
@@ -41,8 +41,8 @@ |
||
41 | 41 | |
42 | 42 | public function __construct(\DateTime $dateTime) |
43 | 43 | { |
44 | - $this->year = (int)$dateTime->format('Y'); |
|
45 | - $this->month = (int)$dateTime->format('m'); |
|
46 | - $this->day = (int)$dateTime->format('d'); |
|
44 | + $this->year = (int) $dateTime->format('Y'); |
|
45 | + $this->month = (int) $dateTime->format('m'); |
|
46 | + $this->day = (int) $dateTime->format('d'); |
|
47 | 47 | } |
48 | 48 | } |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | const CREDIT_CARD_COMPANY_JCB = 'JCDS'; |
61 | 61 | |
62 | 62 | const AUTHENTICATION_VERIFICATION_CODE_VISA = 'CAVV'; |
63 | - const AUTHENTICATION_VERIFICATION_CODE_AMERICAN_EXPRESS = 'AEVV'; |
|
64 | - const AUTHENTICATION_VERIFICATION_CODE_MASTERCARD = 'AAV'; |
|
63 | + const AUTHENTICATION_VERIFICATION_CODE_AMERICAN_EXPRESS = 'AEVV'; |
|
64 | + const AUTHENTICATION_VERIFICATION_CODE_MASTERCARD = 'AAV'; |
|
65 | 65 | |
66 | 66 | /** |
67 | 67 | * VERES status |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | /** |
175 | 175 | * @var string |
176 | 176 | */ |
177 | - public $tdsAuthenticationVerificationCodeDataType = self::DATATYPE_BINARY; |
|
177 | + public $tdsAuthenticationVerificationCodeDataType = self::DATATYPE_BINARY; |
|
178 | 178 | |
179 | 179 | /** |
180 | 180 | * 3DS authentication verification code |
@@ -38,7 +38,7 @@ |
||
38 | 38 | return new SelectedOffer( |
39 | 39 | $selectedOffer->ownerCode, |
40 | 40 | $selectedOffer->shoppingResponseRefID, |
41 | - array_map(static function (TravelRequest\SelectedOfferItem $selectedOfferItem) { |
|
41 | + array_map(static function(TravelRequest\SelectedOfferItem $selectedOfferItem) { |
|
42 | 42 | return new SelectedOfferItem( |
43 | 43 | $selectedOfferItem->offerItemRefId, |
44 | 44 | $selectedOfferItem->paxRefId |
@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | private function loadPaxes(TravelRequest\PaxList $requestPaxList) |
29 | 29 | { |
30 | - $this->Pax = array_map(static function (TravelRequest\Pax $requestPax) { |
|
30 | + $this->Pax = array_map(static function(TravelRequest\Pax $requestPax) { |
|
31 | 31 | $individual = null; |
32 | 32 | |
33 | 33 | if ($requestPax->firstName && $requestPax->lastName) { |
@@ -38,7 +38,7 @@ |
||
38 | 38 | return new SelectedOffer( |
39 | 39 | $selectedOffer->ownerCode, |
40 | 40 | $selectedOffer->shoppingResponseRefID, |
41 | - array_map(static function (TravelRequest\SelectedOfferItem $selectedOfferItem) { |
|
41 | + array_map(static function(TravelRequest\SelectedOfferItem $selectedOfferItem) { |
|
42 | 42 | return new SelectedOfferItem( |
43 | 43 | $selectedOfferItem->offerItemRefId, |
44 | 44 | $selectedOfferItem->paxRefId |
@@ -90,7 +90,7 @@ |
||
90 | 90 | */ |
91 | 91 | protected function transformIncomingRequest($request) |
92 | 92 | { |
93 | - $xsltFile = __DIR__ .DIRECTORY_SEPARATOR.self::REMOVE_EMPTY_XSLT_LOCATION; |
|
93 | + $xsltFile = __DIR__.DIRECTORY_SEPARATOR.self::REMOVE_EMPTY_XSLT_LOCATION; |
|
94 | 94 | if (!is_readable($xsltFile)) { |
95 | 95 | throw new Exception('XSLT file "'.$xsltFile.'" is not readable!'); |
96 | 96 | } |