Completed
Pull Request — master (#76)
by Alexei
01:25
created
src/Api/Struct/Reseller/GeneralInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $this->permissions = [];
29 29
         foreach ($apiResponse->permissions->permission as $permissionInfo) {
30
-            $this->permissions[(string) $permissionInfo->name] = (string) $permissionInfo->value;
30
+            $this->permissions[(string)$permissionInfo->name] = (string)$permissionInfo->value;
31 31
         }
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
src/Api/Struct/Webspace/PhpSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         $this->properties = [];
15 15
 
16 16
         foreach ($apiResponse->webspace->get->result->data->{'php-settings'}->setting as $setting) {
17
-            $this->properties[(string) $setting->name] = (string) $setting->value;
17
+            $this->properties[(string)$setting->name] = (string)$setting->value;
18 18
         }
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Api/Struct/Webspace/PermissionDescriptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         $this->permissions = [];
15 15
 
16 16
         foreach ($apiResponse->descriptor->property as $propertyInfo) {
17
-            $this->permissions[(string) $propertyInfo->name] = new PermissionInfo($propertyInfo);
17
+            $this->permissions[(string)$propertyInfo->name] = new PermissionInfo($propertyInfo);
18 18
         }
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Api/Struct/Webspace/LimitDescriptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         $this->limits = [];
15 15
 
16 16
         foreach ($apiResponse->descriptor->property as $propertyInfo) {
17
-            $this->limits[(string) $propertyInfo->name] = new LimitInfo($propertyInfo);
17
+            $this->limits[(string)$propertyInfo->name] = new LimitInfo($propertyInfo);
18 18
         }
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Api/Struct/Webspace/PhysicalHostingDescriptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         $this->properties = [];
15 15
 
16 16
         foreach ($apiResponse->descriptor->property as $propertyInfo) {
17
-            $this->properties[(string) $propertyInfo->name] = new HostingPropertyInfo($propertyInfo);
17
+            $this->properties[(string)$propertyInfo->name] = new HostingPropertyInfo($propertyInfo);
18 18
         }
19 19
     }
20 20
 }
Please login to merge, or discard this patch.