@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | $items[] = $response->toSimpleObject()->items; |
| 138 | 138 | $index += is_array($response->toSimpleObject()->items) || $response->toSimpleObject()->items instanceof \Countable ? count($response->toSimpleObject()->items) : 0; |
| 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 += is_array($response->toSimpleObject()->items) || $response->toSimpleObject()->items instanceof \Countable ? count($response->toSimpleObject()->items) : 0; |
| 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 += is_array($response->toSimpleObject()->items) || $response->toSimpleObject()->items instanceof \Countable ? count($response->toSimpleObject()->items) : 0; |
| 223 | 223 | |
| 224 | - while($index < $totalResults) { |
|
| 224 | + while ($index < $totalResults) { |
|
| 225 | 225 | $startIndex = $index + 1; |
| 226 | 226 | |
| 227 | 227 | $response = $managementWebProfiles->listManagementProfiles('~all', '~all', [ |
@@ -345,11 +345,11 @@ discard block |
||
| 345 | 345 | case 'float': |
| 346 | 346 | case 'time': |
| 347 | 347 | case 'percent': |
| 348 | - return (float)$value; |
|
| 348 | + return (float) $value; |
|
| 349 | 349 | break; |
| 350 | 350 | |
| 351 | 351 | default: |
| 352 | - return (string)$value; |
|
| 352 | + return (string) $value; |
|
| 353 | 353 | } |
| 354 | 354 | } |
| 355 | 355 | } |