@@ -390,7 +390,7 @@ |
||
| 390 | 390 | /** |
| 391 | 391 | * Get the version number active in the WSDL for the given message |
| 392 | 392 | * |
| 393 | - * @param $messageName |
|
| 393 | + * @param string $messageName |
|
| 394 | 394 | * @return float|string |
| 395 | 395 | */ |
| 396 | 396 | protected function getActiveVersionFor($messageName) |
@@ -35,9 +35,7 @@ |
||
| 35 | 35 | use Amadeus\Client\RequestOptions\OfferConfirmCarOptions; |
| 36 | 36 | use Amadeus\Client\RequestOptions\OfferConfirmHotelOptions; |
| 37 | 37 | use Amadeus\Client\RequestOptions\OfferVerifyOptions; |
| 38 | -use Amadeus\Client\RequestOptions\Pnr\Element\ReceivedFrom; |
|
| 39 | 38 | use Amadeus\Client\RequestOptions\PnrAddMultiElementsBase; |
| 40 | -use Amadeus\Client\RequestOptions\PnrAddMultiElementsOptions; |
|
| 41 | 39 | use Amadeus\Client\RequestOptions\PnrCancelOptions; |
| 42 | 40 | use Amadeus\Client\RequestOptions\PnrCreatePnrOptions; |
| 43 | 41 | use Amadeus\Client\RequestOptions\PnrRetrieveAndDisplayOptions; |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | 67 | * @param string $response PNR_AddMultiElements XML string |
| 68 | - * @return bool |
|
| 68 | + * @return boolean|null |
|
| 69 | 69 | * @throws Exception |
| 70 | 70 | */ |
| 71 | 71 | protected function analyzePnrAddMultiElementsResponse($response) |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | */ |
| 53 | 53 | public function analyzeResponse($response, $messageName) |
| 54 | 54 | { |
| 55 | - $methodName = 'analyze' . str_replace('_', '', ucfirst($messageName)).'Response'; |
|
| 55 | + $methodName = 'analyze' . str_replace('_', '', ucfirst($messageName)) . 'Response'; |
|
| 56 | 56 | |
| 57 | 57 | if (method_exists($this, $methodName)) { |
| 58 | 58 | return $this->$methodName( |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | /** |
| 213 | 213 | * Get the last raw XML message that was sent out |
| 214 | 214 | * |
| 215 | - * @return string|null |
|
| 215 | + * @return string |
|
| 216 | 216 | */ |
| 217 | 217 | public function getLastRequest() |
| 218 | 218 | { |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | /** |
| 223 | 223 | * Get the last raw XML message that was received |
| 224 | 224 | * |
| 225 | - * @return string|null |
|
| 225 | + * @return string |
|
| 226 | 226 | */ |
| 227 | 227 | public function getLastResponse() |
| 228 | 228 | { |
@@ -134,9 +134,9 @@ discard block |
||
| 134 | 134 | public function __construct(Client\Params\SessionHandlerParams $params) |
| 135 | 135 | { |
| 136 | 136 | $this->params = $params; |
| 137 | - if($params->logger instanceof LoggerInterface) { |
|
| 137 | + if ($params->logger instanceof LoggerInterface) { |
|
| 138 | 138 | $this->setLogger($params->logger); |
| 139 | - $this->log(LogLevel::INFO, __METHOD__. "(): Logger started."); |
|
| 139 | + $this->log(LogLevel::INFO, __METHOD__ . "(): Logger started."); |
|
| 140 | 140 | } |
| 141 | 141 | if ($params->overrideSoapClient instanceof \SoapClient) { |
| 142 | 142 | $this->soapClient = $params->overrideSoapClient; |
@@ -252,11 +252,11 @@ discard block |
||
| 252 | 252 | |
| 253 | 253 | $this->handlePostMessage($messageName, $this->getLastResponse(), $messageOptions, $result); |
| 254 | 254 | |
| 255 | - } catch(\SoapFault $ex) { |
|
| 255 | + } catch (\SoapFault $ex) { |
|
| 256 | 256 | $this->log( |
| 257 | 257 | LogLevel::ERROR, |
| 258 | 258 | "SOAPFAULT while sending message " . $messageName . ": " . |
| 259 | - $ex->getMessage() . " code: " .$ex->getCode() . " at " . $ex->getFile() . |
|
| 259 | + $ex->getMessage() . " code: " . $ex->getCode() . " at " . $ex->getFile() . |
|
| 260 | 260 | " line " . $ex->getLine() . ": \n" . $ex->getTraceAsString() |
| 261 | 261 | ); |
| 262 | 262 | $this->logRequestAndResponse($messageName); |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | $password = base64_decode($params->authParams->passwordData); |
| 436 | 436 | $creation = new \DateTime('now', new \DateTimeZone('UTC')); |
| 437 | 437 | $t = microtime(true); |
| 438 | - $micro = sprintf("%03d",($t - floor($t)) * 1000); |
|
| 438 | + $micro = sprintf("%03d", ($t - floor($t)) * 1000); |
|
| 439 | 439 | $creationString = $this->createDateTimeStringForAuth($creation, $micro); |
| 440 | 440 | $messageNonce = $this->generateUniqueNonce($params->authParams->nonceBase, $creationString); |
| 441 | 441 | $encodedNonce = base64_encode($messageNonce); |
@@ -491,8 +491,7 @@ discard block |
||
| 491 | 491 | //We are authenticated and stateful: provide session header to continue or terminate session |
| 492 | 492 | $statusCode = |
| 493 | 493 | (isset($messageOptions['endSession']) && $messageOptions['endSession'] === true) ? |
| 494 | - "End" : |
|
| 495 | - "InSeries"; |
|
| 494 | + "End" : "InSeries"; |
|
| 496 | 495 | |
| 497 | 496 | array_push( |
| 498 | 497 | $headersToSet, |
@@ -575,15 +574,15 @@ discard block |
||
| 575 | 574 | if (function_exists('com_create_guid')) { |
| 576 | 575 | return com_create_guid(); |
| 577 | 576 | } else { |
| 578 | - mt_srand((double)microtime()*10000); |
|
| 577 | + mt_srand((double) microtime() * 10000); |
|
| 579 | 578 | $charId = strtoupper(md5(uniqid(rand(), true))); |
| 580 | - $hyphen = chr(45);// "-" |
|
| 579 | + $hyphen = chr(45); // "-" |
|
| 581 | 580 | |
| 582 | 581 | $uuid = substr($charId, 0, 8) . $hyphen |
| 583 | 582 | .substr($charId, 8, 4) . $hyphen |
| 584 | - .substr($charId,12, 4) . $hyphen |
|
| 585 | - .substr($charId,16, 4) . $hyphen |
|
| 586 | - .substr($charId,20,12); |
|
| 583 | + .substr($charId, 12, 4) . $hyphen |
|
| 584 | + .substr($charId, 16, 4) . $hyphen |
|
| 585 | + .substr($charId, 20, 12); |
|
| 587 | 586 | |
| 588 | 587 | return $uuid; |
| 589 | 588 | } |
@@ -670,8 +669,8 @@ discard block |
||
| 670 | 669 | */ |
| 671 | 670 | protected function extractMessageVersion($fullVersionString) |
| 672 | 671 | { |
| 673 | - $secondUnderscore = strpos($fullVersionString, '_', strpos($fullVersionString, '_')+1); |
|
| 674 | - $num = substr($fullVersionString, $secondUnderscore+1); |
|
| 672 | + $secondUnderscore = strpos($fullVersionString, '_', strpos($fullVersionString, '_') + 1); |
|
| 673 | + $num = substr($fullVersionString, $secondUnderscore + 1); |
|
| 675 | 674 | |
| 676 | 675 | return str_replace('_', '.', $num); |
| 677 | 676 | } |
@@ -1,24 +1,24 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * amadeus-ws-client |
|
| 4 | - * |
|
| 5 | - * Copyright 2015 Amadeus Benelux NV |
|
| 6 | - * |
|
| 7 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | - * you may not use this file except in compliance with the License. |
|
| 9 | - * You may obtain a copy of the License at |
|
| 10 | - * |
|
| 11 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | - * |
|
| 13 | - * Unless required by applicable law or agreed to in writing, software |
|
| 14 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | - * See the License for the specific language governing permissions and |
|
| 17 | - * limitations under the License. |
|
| 18 | - * |
|
| 19 | - * @package Amadeus |
|
| 20 | - * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | - */ |
|
| 3 | + * amadeus-ws-client |
|
| 4 | + * |
|
| 5 | + * Copyright 2015 Amadeus Benelux NV |
|
| 6 | + * |
|
| 7 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | + * you may not use this file except in compliance with the License. |
|
| 9 | + * You may obtain a copy of the License at |
|
| 10 | + * |
|
| 11 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | + * |
|
| 13 | + * Unless required by applicable law or agreed to in writing, software |
|
| 14 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | + * See the License for the specific language governing permissions and |
|
| 17 | + * limitations under the License. |
|
| 18 | + * |
|
| 19 | + * @package Amadeus |
|
| 20 | + * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | + */ |
|
| 22 | 22 | |
| 23 | 23 | namespace Amadeus\Client\Util; |
| 24 | 24 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | /** |
| 39 | 39 | * @param string $pseudoCityCode |
| 40 | 40 | * @param string|null $requestorType |
| 41 | - * @param int|null $posType |
|
| 41 | + * @param integer $posType |
|
| 42 | 42 | * @param string|null $agentDutyCode |
| 43 | 43 | */ |
| 44 | 44 | public function __construct($pseudoCityCode, $requestorType = "U", $posType = 1, $agentDutyCode = null) |
@@ -1,24 +1,24 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * amadeus-ws-client |
|
| 4 | - * |
|
| 5 | - * Copyright 2015 Amadeus Benelux NV |
|
| 6 | - * |
|
| 7 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | - * you may not use this file except in compliance with the License. |
|
| 9 | - * You may obtain a copy of the License at |
|
| 10 | - * |
|
| 11 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | - * |
|
| 13 | - * Unless required by applicable law or agreed to in writing, software |
|
| 14 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | - * See the License for the specific language governing permissions and |
|
| 17 | - * limitations under the License. |
|
| 18 | - * |
|
| 19 | - * @package Amadeus |
|
| 20 | - * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | - */ |
|
| 3 | + * amadeus-ws-client |
|
| 4 | + * |
|
| 5 | + * Copyright 2015 Amadeus Benelux NV |
|
| 6 | + * |
|
| 7 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | + * you may not use this file except in compliance with the License. |
|
| 9 | + * You may obtain a copy of the License at |
|
| 10 | + * |
|
| 11 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | + * |
|
| 13 | + * Unless required by applicable law or agreed to in writing, software |
|
| 14 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | + * See the License for the specific language governing permissions and |
|
| 17 | + * limitations under the License. |
|
| 18 | + * |
|
| 19 | + * @package Amadeus |
|
| 20 | + * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | + */ |
|
| 22 | 22 | |
| 23 | 23 | namespace Amadeus\Client\Util; |
| 24 | 24 | |
@@ -36,7 +36,6 @@ discard block |
||
| 36 | 36 | use Amadeus\Client\Struct\Pnr\AddMultiElements\AirAuxItinerary; |
| 37 | 37 | use Amadeus\Client\Struct\Pnr\AddMultiElements\DataElementsIndiv; |
| 38 | 38 | use Amadeus\Client\Struct\Pnr\AddMultiElements\DataElementsMaster; |
| 39 | -use Amadeus\Client\Struct\Pnr\AddMultiElements\DateAndTimeDetails; |
|
| 40 | 39 | use Amadeus\Client\Struct\Pnr\AddMultiElements\DateOfBirth; |
| 41 | 40 | use Amadeus\Client\Struct\Pnr\AddMultiElements\ElementManagementData; |
| 42 | 41 | use Amadeus\Client\Struct\Pnr\AddMultiElements\ElementManagementItinerary; |
@@ -51,7 +50,6 @@ discard block |
||
| 51 | 50 | use Amadeus\Client\Struct\Pnr\AddMultiElements\NewFopsDetails; |
| 52 | 51 | use Amadeus\Client\Struct\Pnr\AddMultiElements\OriginDestinationDetails; |
| 53 | 52 | use Amadeus\Client\Struct\Pnr\AddMultiElements\Passenger; |
| 54 | -use Amadeus\Client\Struct\Pnr\AddMultiElements\PassengerData; |
|
| 55 | 53 | use Amadeus\Client\Struct\Pnr\AddMultiElements\ReferenceForDataElement; |
| 56 | 54 | use Amadeus\Client\Struct\Pnr\AddMultiElements\ServiceRequest; |
| 57 | 55 | use Amadeus\Client\Struct\Pnr\AddMultiElements\StructuredAddress; |
@@ -1,24 +1,24 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * amadeus-ws-client |
|
| 4 | - * |
|
| 5 | - * Copyright 2015 Amadeus Benelux NV |
|
| 6 | - * |
|
| 7 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | - * you may not use this file except in compliance with the License. |
|
| 9 | - * You may obtain a copy of the License at |
|
| 10 | - * |
|
| 11 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | - * |
|
| 13 | - * Unless required by applicable law or agreed to in writing, software |
|
| 14 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | - * See the License for the specific language governing permissions and |
|
| 17 | - * limitations under the License. |
|
| 18 | - * |
|
| 19 | - * @package Amadeus |
|
| 20 | - * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | - */ |
|
| 3 | + * amadeus-ws-client |
|
| 4 | + * |
|
| 5 | + * Copyright 2015 Amadeus Benelux NV |
|
| 6 | + * |
|
| 7 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | + * you may not use this file except in compliance with the License. |
|
| 9 | + * You may obtain a copy of the License at |
|
| 10 | + * |
|
| 11 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | + * |
|
| 13 | + * Unless required by applicable law or agreed to in writing, software |
|
| 14 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | + * See the License for the specific language governing permissions and |
|
| 17 | + * limitations under the License. |
|
| 18 | + * |
|
| 19 | + * @package Amadeus |
|
| 20 | + * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | + */ |
|
| 22 | 22 | |
| 23 | 23 | namespace Amadeus\Client\Struct\Pnr\AddMultiElements; |
| 24 | 24 | |
@@ -150,7 +150,7 @@ |
||
| 150 | 150 | $this->requestCreator = $this->loadRequestCreator( |
| 151 | 151 | $params->requestCreator, |
| 152 | 152 | $params->requestCreatorParams, |
| 153 | - self::receivedFromIdentifier . "-" .self::version, |
|
| 153 | + self::receivedFromIdentifier . "-" . self::version, |
|
| 154 | 154 | $this->sessionHandler->getOriginatorOffice(), |
| 155 | 155 | $this->sessionHandler->getMessagesAndVersions() |
| 156 | 156 | ); |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | if (!is_null($options)) { |
| 56 | 56 | $this->offerTatoo = new OfferTatoo($options->tatooNumber); |
| 57 | 57 | |
| 58 | - foreach($options->passengerReassociation as $reAssoc) { |
|
| 58 | + foreach ($options->passengerReassociation as $reAssoc) { |
|
| 59 | 59 | $this->passengerReassociation[] = new PassengerReassociation( |
| 60 | 60 | $reAssoc->pricingReference, |
| 61 | 61 | $reAssoc->paxReferences |
@@ -1,24 +1,24 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * amadeus-ws-client |
|
| 4 | - * |
|
| 5 | - * Copyright 2015 Amadeus Benelux NV |
|
| 6 | - * |
|
| 7 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | - * you may not use this file except in compliance with the License. |
|
| 9 | - * You may obtain a copy of the License at |
|
| 10 | - * |
|
| 11 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | - * |
|
| 13 | - * Unless required by applicable law or agreed to in writing, software |
|
| 14 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | - * See the License for the specific language governing permissions and |
|
| 17 | - * limitations under the License. |
|
| 18 | - * |
|
| 19 | - * @package Amadeus |
|
| 20 | - * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | - */ |
|
| 3 | + * amadeus-ws-client |
|
| 4 | + * |
|
| 5 | + * Copyright 2015 Amadeus Benelux NV |
|
| 6 | + * |
|
| 7 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | + * you may not use this file except in compliance with the License. |
|
| 9 | + * You may obtain a copy of the License at |
|
| 10 | + * |
|
| 11 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | + * |
|
| 13 | + * Unless required by applicable law or agreed to in writing, software |
|
| 14 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | + * See the License for the specific language governing permissions and |
|
| 17 | + * limitations under the License. |
|
| 18 | + * |
|
| 19 | + * @package Amadeus |
|
| 20 | + * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | + */ |
|
| 22 | 22 | |
| 23 | 23 | namespace Amadeus\Client\Util; |
| 24 | 24 | |
@@ -1,24 +1,24 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * amadeus-ws-client |
|
| 4 | - * |
|
| 5 | - * Copyright 2015 Amadeus Benelux NV |
|
| 6 | - * |
|
| 7 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | - * you may not use this file except in compliance with the License. |
|
| 9 | - * You may obtain a copy of the License at |
|
| 10 | - * |
|
| 11 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | - * |
|
| 13 | - * Unless required by applicable law or agreed to in writing, software |
|
| 14 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | - * See the License for the specific language governing permissions and |
|
| 17 | - * limitations under the License. |
|
| 18 | - * |
|
| 19 | - * @package Amadeus |
|
| 20 | - * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | - */ |
|
| 3 | + * amadeus-ws-client |
|
| 4 | + * |
|
| 5 | + * Copyright 2015 Amadeus Benelux NV |
|
| 6 | + * |
|
| 7 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | + * you may not use this file except in compliance with the License. |
|
| 9 | + * You may obtain a copy of the License at |
|
| 10 | + * |
|
| 11 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | + * |
|
| 13 | + * Unless required by applicable law or agreed to in writing, software |
|
| 14 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | + * See the License for the specific language governing permissions and |
|
| 17 | + * limitations under the License. |
|
| 18 | + * |
|
| 19 | + * @package Amadeus |
|
| 20 | + * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | + */ |
|
| 22 | 22 | |
| 23 | 23 | namespace Amadeus\Client\Struct\PriceXplorer; |
| 24 | 24 | |
@@ -30,8 +30,8 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | class DateAndTimeInfo |
| 32 | 32 | { |
| 33 | - /** |
|
| 34 | - * @var DateAndTimeDetails[] |
|
| 35 | - */ |
|
| 36 | - public $dateAndTimeDetails = []; |
|
| 33 | + /** |
|
| 34 | + * @var DateAndTimeDetails[] |
|
| 35 | + */ |
|
| 36 | + public $dateAndTimeDetails = []; |
|
| 37 | 37 | } |
@@ -1,24 +1,24 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * amadeus-ws-client |
|
| 4 | - * |
|
| 5 | - * Copyright 2015 Amadeus Benelux NV |
|
| 6 | - * |
|
| 7 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | - * you may not use this file except in compliance with the License. |
|
| 9 | - * You may obtain a copy of the License at |
|
| 10 | - * |
|
| 11 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | - * |
|
| 13 | - * Unless required by applicable law or agreed to in writing, software |
|
| 14 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | - * See the License for the specific language governing permissions and |
|
| 17 | - * limitations under the License. |
|
| 18 | - * |
|
| 19 | - * @package Amadeus |
|
| 20 | - * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | - */ |
|
| 3 | + * amadeus-ws-client |
|
| 4 | + * |
|
| 5 | + * Copyright 2015 Amadeus Benelux NV |
|
| 6 | + * |
|
| 7 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 8 | + * you may not use this file except in compliance with the License. |
|
| 9 | + * You may obtain a copy of the License at |
|
| 10 | + * |
|
| 11 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 12 | + * |
|
| 13 | + * Unless required by applicable law or agreed to in writing, software |
|
| 14 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 15 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 16 | + * See the License for the specific language governing permissions and |
|
| 17 | + * limitations under the License. |
|
| 18 | + * |
|
| 19 | + * @package Amadeus |
|
| 20 | + * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
|
| 21 | + */ |
|
| 22 | 22 | |
| 23 | 23 | namespace Amadeus\Client\Struct\PriceXplorer; |
| 24 | 24 | |
@@ -31,28 +31,28 @@ discard block |
||
| 31 | 31 | class SelectionDetailsGroup |
| 32 | 32 | { |
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * @var SelectionDetailsInfo |
|
| 36 | - */ |
|
| 37 | - public $selectionDetailsInfo; |
|
| 34 | + /** |
|
| 35 | + * @var SelectionDetailsInfo |
|
| 36 | + */ |
|
| 37 | + public $selectionDetailsInfo; |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * @var NbOfUnitsInfo |
|
| 41 | - */ |
|
| 42 | - public $nbOfUnitsInfo; |
|
| 39 | + /** |
|
| 40 | + * @var NbOfUnitsInfo |
|
| 41 | + */ |
|
| 42 | + public $nbOfUnitsInfo; |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * @var DateAndTimeInfo |
|
| 46 | - */ |
|
| 47 | - public $dateAndTimeInfo; |
|
| 44 | + /** |
|
| 45 | + * @var DateAndTimeInfo |
|
| 46 | + */ |
|
| 47 | + public $dateAndTimeInfo; |
|
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * @var QuantityInfo |
|
| 51 | - */ |
|
| 52 | - public $quantityInfo; |
|
| 49 | + /** |
|
| 50 | + * @var QuantityInfo |
|
| 51 | + */ |
|
| 52 | + public $quantityInfo; |
|
| 53 | 53 | |
| 54 | - /** |
|
| 55 | - * @var array |
|
| 56 | - */ |
|
| 57 | - public $attributeInfo = []; |
|
| 54 | + /** |
|
| 55 | + * @var array |
|
| 56 | + */ |
|
| 57 | + public $attributeInfo = []; |
|
| 58 | 58 | } |