@@ -27,7 +27,7 @@ |
||
27 | 27 | 'name', |
28 | 28 | ]); |
29 | 29 | foreach ($apiResponse->property as $propertyInfo) { |
30 | - $this->properties[(string) $propertyInfo->name] = (string) $propertyInfo->value; |
|
30 | + $this->properties[(string)$propertyInfo->name] = (string)$propertyInfo->value; |
|
31 | 31 | } |
32 | 32 | } |
33 | 33 | } |
@@ -27,7 +27,7 @@ |
||
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 | } |
@@ -14,7 +14,7 @@ |
||
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 | } |
@@ -14,7 +14,7 @@ |
||
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 | } |
@@ -14,7 +14,7 @@ |
||
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 | } |
@@ -14,7 +14,7 @@ |
||
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 | } |