@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public function __construct($options) |
66 | 66 | { |
67 | - if (! is_null($options)) { |
|
67 | + if (!is_null($options)) { |
|
68 | 68 | $this->loadPassengers($options->passengers); |
69 | 69 | |
70 | 70 | $this->loadFlightDetails($options->segments); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $counter = 1; |
83 | 83 | foreach ($passengers as $passenger) { |
84 | 84 | $this->passengerInfoGroup[] = new PassengerInfoGroup($passenger, $counter); |
85 | - $counter ++; |
|
85 | + $counter++; |
|
86 | 86 | } |
87 | 87 | } |
88 | 88 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | public function __construct($options) |
28 | 28 | { |
29 | 29 | foreach ($options->referenceGroups as $referenceGroup) { |
30 | - $references = array_map(function (Reference $reference) { |
|
30 | + $references = array_map(function(Reference $reference) { |
|
31 | 31 | return new ReferenceDetails( |
32 | 32 | $reference->getType(), |
33 | 33 | $reference->getValue() |
@@ -237,7 +237,7 @@ |
||
237 | 237 | $errorMessage = (array_key_exists($errorCode, $recognizedErrors)) ? $recognizedErrors[$errorCode] : ''; |
238 | 238 | |
239 | 239 | if ($errorMessage === '') { |
240 | - $errorMessage = "PROCESS E-TICKET ERROR '" . $errorCode . "' (Error message unavailable)"; |
|
240 | + $errorMessage = "PROCESS E-TICKET ERROR '".$errorCode."' (Error message unavailable)"; |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | return $errorMessage; |