Test Failed
Pull Request — master (#383)
by
unknown
06:24
created
src/Amadeus/Client/Struct/Profile/ProfileReadProfile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
     public function __construct($options)
17 17
     {
18 18
         if (!is_null($options)) {
19
-            $this->Version= $options->Version;
20
-            $this->UniqueID= $options->UniqueID;
21
-            $this->ReadRequests= $options->ReadRequests;
19
+            $this->Version = $options->Version;
20
+            $this->UniqueID = $options->UniqueID;
21
+            $this->ReadRequests = $options->ReadRequests;
22 22
         }
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Profile/ProfileCreateProfile.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
     public function __construct($options)
15 15
     {
16 16
         if (!is_null($options)) {
17
-            $this->Version= $options->Version;
18
-            $this->UniqueID= $options->UniqueID;
19
-            $this->Profile= $options->Profile;
20
-            $this->CompanyName= $options->CompanyName;
17
+            $this->Version = $options->Version;
18
+            $this->UniqueID = $options->UniqueID;
19
+            $this->Profile = $options->Profile;
20
+            $this->CompanyName = $options->CompanyName;
21 21
         }
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Profile/ProfileDeleteProfile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
     public function __construct($options)
14 14
     {
15 15
         if (!is_null($options)) {
16
-            $this->Version= $options->Version;
17
-            $this->UniqueID= $options->UniqueID;
18
-            $this->DeleteRequests= $options->DeleteRequests;
16
+            $this->Version = $options->Version;
17
+            $this->UniqueID = $options->UniqueID;
18
+            $this->DeleteRequests = $options->DeleteRequests;
19 19
         }
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/Amadeus/Client/RequestOptions/ProfileUpdateProfileOptions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 class ProfileUpdateProfileOptions extends Base
6 6
 {
7 7
     public $Position;
8
-    public $UniqueID=[];
8
+    public $UniqueID = [];
9 9
     public $Version;
10 10
 }
Please login to merge, or discard this patch.