@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | $items[] = $response->toSimpleObject()->items; |
| 138 | 138 | $index += count($response->toSimpleObject()->items); |
| 139 | 139 | |
| 140 | - while($index < $totalResults) { |
|
| 140 | + while ($index < $totalResults) { |
|
| 141 | 141 | $startIndex = $index + 1; |
| 142 | 142 | |
| 143 | 143 | $response = $managementAccounts->listManagementAccounts([ |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | $items[] = $response->toSimpleObject()->items; |
| 180 | 180 | $index += count($response->toSimpleObject()->items); |
| 181 | 181 | |
| 182 | - while($index < $totalResults) { |
|
| 182 | + while ($index < $totalResults) { |
|
| 183 | 183 | $startIndex = $index + 1; |
| 184 | 184 | |
| 185 | 185 | $response = $managementWebProperties->listManagementWebproperties('~all', [ |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | $items[] = $response->toSimpleObject()->items; |
| 222 | 222 | $index += count($response->toSimpleObject()->items); |
| 223 | 223 | |
| 224 | - while($index < $totalResults) { |
|
| 224 | + while ($index < $totalResults) { |
|
| 225 | 225 | $startIndex = $index + 1; |
| 226 | 226 | |
| 227 | 227 | $response = $managementWebProfiles->listManagementProfiles('~all', '~all', [ |
@@ -347,11 +347,11 @@ discard block |
||
| 347 | 347 | case 'float': |
| 348 | 348 | case 'time': |
| 349 | 349 | case 'percent': |
| 350 | - return (float)$value; |
|
| 350 | + return (float) $value; |
|
| 351 | 351 | break; |
| 352 | 352 | |
| 353 | 353 | default: |
| 354 | - return (string)$value; |
|
| 354 | + return (string) $value; |
|
| 355 | 355 | } |
| 356 | 356 | } |
| 357 | 357 | } |