Passed
Push — master ( 1ae6ee...633319 )
by Dieter
02:58
created
src/Amadeus/Client/Struct/Fare/GetFareFamilyDescription/DiscountDetails.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Client/Struct/Fare/GetFareFamilyDescription/CompanyIdentification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,6 @@
 block discarded – undo
35 35
 
36 36
     public function __construct($otherCompany)
37 37
     {
38
-        $this->otherCompany = (string)$otherCompany;
38
+        $this->otherCompany = (string) $otherCompany;
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
Client/Struct/Fare/GetFareFamilyDescription/ItineraryInformation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Fare/GetFareFamilyDescription/DateTime.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.