Test Failed
Pull Request — master (#212)
by
unknown
14:01
created
Amadeus/Client/RequestOptions/TicketRepricePnrWithBookingClassOptions.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 
157 157
 
158 158
     /**
159
-         * This option allows you to override the currency of the office.
159
+     * This option allows you to override the currency of the office.
160 160
      *
161 161
      * @var string
162 162
      */
Please login to merge, or discard this patch.
src/Amadeus/Client/RequestOptions/Fare/MasterPricer/MultiTicketWeights.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -33,21 +33,21 @@
 block discarded – undo
33 33
 class MultiTicketWeights extends LoadParamsFromArray
34 34
 {
35 35
     /**
36
-    * Recommendations for outbound (OWO)
37
-    *
38
-    * @var int
39
-    */
36
+     * Recommendations for outbound (OWO)
37
+     *
38
+     * @var int
39
+     */
40 40
     public $oneWayOutbound;
41 41
     /**
42
-    * Recommendations for inbound (OWI)
43
-    *
44
-    * @var int
45
-    */
42
+     * Recommendations for inbound (OWI)
43
+     *
44
+     * @var int
45
+     */
46 46
     public $oneWayInbound;
47 47
     /**
48
-    * Recommendations for complete journey (RT)
49
-    *
50
-    * @var int
51
-    */
48
+     * Recommendations for complete journey (RT)
49
+     *
50
+     * @var int
51
+     */
52 52
     public $returnTrip;
53 53
 }
Please login to merge, or discard this patch.
src/Amadeus/Client.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1575,13 +1575,13 @@
 block discarded – undo
1575 1575
      * @throws Exception
1576 1576
      */
1577 1577
     public function serviceStandaloneCatalogue(
1578
-    		RequestOptions\ServiceStandaloneCatalogueOptions $options,
1579
-    		$messageOptions = []
1578
+      RequestOptions\ServiceStandaloneCatalogueOptions $options,
1579
+      $messageOptions = []
1580 1580
     
1581 1581
     ) {
1582
-    	$msgName = 'Service_StandaloneCatalogue';
1582
+     $msgName = 'Service_StandaloneCatalogue';
1583 1583
     
1584
-    	return $this->callMessage($msgName, $options, $messageOptions);
1584
+     return $this->callMessage($msgName, $options, $messageOptions);
1585 1585
     }
1586 1586
     
1587 1587
     /**
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Service/StandaloneCatalogue/TravellerDetails.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
  */
31 31
 class TravellerDetails
32 32
 {
33
-	 /**
34
-     * @var int
35
-     */
33
+  /**
34
+   * @var int
35
+   */
36 36
     public $referenceNumber;
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
Client/Struct/Service/StandaloneCatalogue/SpecificTravellerDetails.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * segmentControlDetails constructor.
40 40
      *
41 41
      * @param int $referenceNumber
42
-      */
42
+     */
43 43
     public function __construct($referenceNumber)
44 44
     {
45 45
         $this->travellerDetails = new TravellerDetails(
Please login to merge, or discard this patch.
Amadeus/Client/Struct/Service/StandaloneCatalogue/PassengerInfoGroup.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     public function __construct($passenger, $referenceNumber)
53 53
     {    	
54
-    	$this->specificTravellerDetails = new SpecificTravellerDetails($referenceNumber);
54
+     $this->specificTravellerDetails = new SpecificTravellerDetails($referenceNumber);
55 55
 
56 56
         if (!empty($passenger->type)) {
57 57
             $this->fareInfo = new FareInfo($passenger->type);
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Service/StandaloneCatalogue/FareInfo.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
    
39 39
     public function __construct($paxType)
40 40
     {
41
-    	$this->valueQualifier = $paxType;
41
+     $this->valueQualifier = $paxType;
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Service/IntegratedPricing/PricingOptionKey.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
  */
31 31
 class PricingOptionKey
32 32
 {
33
-	const OPTION_FARE_BASIS_SIMPLE_OVERRIDE = "FBA";
33
+ const OPTION_FARE_BASIS_SIMPLE_OVERRIDE = "FBA";
34 34
     const OVERRIDE_ACCOUNT_CODE = "ACC";
35 35
     const OVERRIDE_PRICING_ALL_SERVICES = "ALL";
36 36
     const OVERRIDE_AWARD = "AWD";
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Service/StandaloneCatalogue.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
 class StandaloneCatalogue extends BaseWsMessage
41 41
 {
42 42
      /**
43
-     * @var passengerInfoGroup[]
44
-     */
43
+      * @var passengerInfoGroup[]
44
+      */
45 45
     public $passengerInfoGroup = [];
46 46
 
47 47
     /**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function __construct($options)
63 63
     {
64 64
         if (!is_null($options)) {
65
-           	$this->loadPassengers($options->passengers);
65
+            $this->loadPassengers($options->passengers);
66 66
            			
67 67
             $this->loadflightDetails($options->segments);
68 68
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     protected function loadPassengers($passengers)
77 77
     {
78 78
         $counter = 1;
79
-		foreach ($passengers as $passenger) {
79
+  foreach ($passengers as $passenger) {
80 80
             $this->passengerInfoGroup[] = new PassengerInfoGroup($passenger, $counter);
81 81
             $counter++;
82 82
         }
Please login to merge, or discard this patch.