@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | /** |
16 | 16 | * @param SessionParameters $parameters |
17 | 17 | * @param bool $newSession |
18 | - * @return array |
|
18 | + * @return \stdClass |
|
19 | 19 | */ |
20 | 20 | public function getDeals(SessionParameters $parameters, $newSession) |
21 | 21 | { |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | - * @param array $sessionParameters |
|
26 | + * @param SessionParameters[] $sessionParameters |
|
27 | 27 | * @return array |
28 | 28 | */ |
29 | 29 | public function getMultiDeals(array $sessionParameters) |
@@ -36,7 +36,7 @@ |
||
36 | 36 | foreach ($itinerary['PricingOptions'] as $priceOption) { |
37 | 37 | $mappedData['Itineraries'][$count] = [ |
38 | 38 | 'Price' => $priceOption['Price'], |
39 | - 'Deeplink' => 'none',//$priceOption['DeeplinkUrl'], |
|
39 | + 'Deeplink' => 'none', //$priceOption['DeeplinkUrl'], |
|
40 | 40 | 'OutboundCarrier' => $outboundCarrier['Name'], |
41 | 41 | 'InboundCarrier' => $inboundCarrier['Name'], |
42 | 42 | ]; |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | protected $processor; |
14 | 14 | |
15 | - /** |
|
15 | + /** |
|
16 | 16 | * @return Processor |
17 | 17 | */ |
18 | 18 | public function getProcessor() |