Passed
Push — develop ( 35c0dc...300dee )
by Benjamin
05:49
created
src/apis/Analytics.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.