Test Failed
Pull Request — master (#383)
by
unknown
12:04
created
src/Amadeus/Client/Struct/Profile/ProfileUpdateProfile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public $Position;
9 9
     //public $Root;
10
-    public $UniqueID=[];
10
+    public $UniqueID = [];
11 11
     public $Version;
12 12
 
13 13
     public function __construct($options)
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
@@ -13,10 +13,10 @@
 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->Profile= $options->Profile;
19
-            $this->CompanyName= $options->CompanyName;
16
+            $this->Version = $options->Version;
17
+            $this->UniqueID = $options->UniqueID;
18
+            $this->Profile = $options->Profile;
19
+            $this->CompanyName = $options->CompanyName;
20 20
         }
21 21
     }
22 22
 }
23 23
\ No newline at end of file
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
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
     public function __construct($options)
13 13
     {
14 14
         if (!is_null($options)) {
15
-            $this->Version= $options->Version;
16
-            $this->UniqueID= $options->UniqueID;
17
-            $this->DeleteRequests= $options->DeleteRequests;
15
+            $this->Version = $options->Version;
16
+            $this->UniqueID = $options->UniqueID;
17
+            $this->DeleteRequests = $options->DeleteRequests;
18 18
         }
19 19
     }
20 20
 }
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/Amadeus/Client/Struct/Profile/ProfileReadProfile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 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->ReadRequests= $options->ReadRequests;
17
+            $this->Version = $options->Version;
18
+            $this->UniqueID = $options->UniqueID;
19
+            $this->ReadRequests = $options->ReadRequests;
20 20
         }
21 21
     }
22 22
 }
23 23
\ No newline at end of file
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,7 +5,7 @@
 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
 
11 11
 }
12 12
\ No newline at end of file
Please login to merge, or discard this patch.