@@ -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; |
@@ -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 | } |
@@ -44,9 +44,9 @@ |
||
44 | 44 | |
45 | 45 | const TYPE_INDIVIDUAL_INCLUSIVE_TOUR = 'IIT'; |
46 | 46 | |
47 | - const TYPE_YOUTH = "YTH"; |
|
47 | + const TYPE_YOUTH = "YTH"; |
|
48 | 48 | |
49 | - const TYPE_SENIOR = "SRC"; |
|
49 | + const TYPE_SENIOR = "SRC"; |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * What type of passengers? self::TYPE_* |
@@ -42,9 +42,9 @@ |
||
42 | 42 | |
43 | 43 | const TRAV_TYPE_STUDENT = "STU"; |
44 | 44 | |
45 | - const TRAV_TYPE_YOUTH = "YTH"; |
|
45 | + const TRAV_TYPE_YOUTH = "YTH"; |
|
46 | 46 | |
47 | - const TRAV_TYPE_SENIOR = "SRC"; |
|
47 | + const TRAV_TYPE_SENIOR = "SRC"; |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Unique sequence number for traveller |