Passed
Push — develop ( 29629c...8f4c81 )
by Benjamin
07:10
created
src/controllers/ReportsController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
         try {
38 38
             $response = Analytics::$plugin->getReports()->getEcommerceReport($viewId, $period);
39
-        } catch(\Google_Service_Exception $e) {
39
+        } catch (\Google_Service_Exception $e) {
40 40
             return $this->handleGoogleServiceException($e);
41 41
         }
42 42
 
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
     public function actionElement()
55 55
     {
56 56
         $elementId = Craft::$app->getRequest()->getRequiredParam('elementId');
57
-        $siteId = (int)Craft::$app->getRequest()->getRequiredParam('siteId');
57
+        $siteId = (int) Craft::$app->getRequest()->getRequiredParam('siteId');
58 58
         $metric = Craft::$app->getRequest()->getRequiredParam('metric');
59 59
 
60 60
         try {
61 61
             $response = Analytics::$plugin->getReports()->getElementReport($elementId, $siteId, $metric);
62
-        } catch(\Google_Service_Exception $e) {
62
+        } catch (\Google_Service_Exception $e) {
63 63
             return $this->handleGoogleServiceException($e);
64 64
         }
65 65
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
         try {
99 99
             $response = Analytics::$plugin->getReports()->getRealtimeReport($request);
100
-        } catch(\Google_Service_Exception $e) {
100
+        } catch (\Google_Service_Exception $e) {
101 101
             return $this->handleGoogleServiceException($e);
102 102
         }
103 103
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 
190 190
 
191 191
             return $this->asJson($response);
192
-        } catch(\Google_Service_Exception $e) {
192
+        } catch (\Google_Service_Exception $e) {
193 193
             return $this->handleGoogleServiceException($e);
194 194
         }
195 195
     }
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
     {
209 209
         $errors = $e->getErrors();
210 210
 
211
-        if(empty($errors)) {
211
+        if (empty($errors)) {
212 212
             throw $e;
213 213
         }
214 214
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 
348 348
         $totalRevenue = 0;
349 349
 
350
-        foreach($rows as $row) {
350
+        foreach ($rows as $row) {
351 351
             $totalRevenue += $row[1];
352 352
         }
353 353
 
Please login to merge, or discard this patch.