Passed
Push — develop ( 0437e2...b0b0d8 )
by Benjamin
04:07
created
src/models/ReportRequestCriteria.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
             $response['report'] = Analytics::$plugin->getApis()->getAnalyticsReporting()->getReport($this, $toArray);
113 113
             $response['success'] = true;
114 114
         }
115
-        catch(\Exception $e)
115
+        catch (\Exception $e)
116 116
         {
117 117
             $response['error'] = true;
118 118
             $response['errorMessage'] = $e->getMessage();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,8 +111,7 @@
 block discarded – undo
111 111
         {
112 112
             $response['report'] = Analytics::$plugin->getApis()->getAnalyticsReporting()->getReport($this, $toArray);
113 113
             $response['success'] = true;
114
-        }
115
-        catch(\Exception $e)
114
+        } catch(\Exception $e)
116 115
         {
117 116
             $response['error'] = true;
118 117
             $response['errorMessage'] = $e->getMessage();
Please login to merge, or discard this patch.
src/services/Reports.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             Analytics::$plugin->cache->set($cacheId, $response, $cacheDuration);
51 51
         }
52 52
 
53
-        return (array)$response;
53
+        return (array) $response;
54 54
     }
55 55
 
56 56
     /**
Please login to merge, or discard this patch.
src/apis/AnalyticsReporting.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         $reportsResponse = $this->getReportingReports($criterias);
67 67
 
68 68
         if ($toArray) {
69
-            $reportsResponseArray = (array)$reportsResponse->toSimpleObject();
69
+            $reportsResponseArray = (array) $reportsResponse->toSimpleObject();
70 70
 
71 71
             return $reportsResponseArray['reports'];
72 72
         }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         }
141 141
 
142 142
         if ($criteria->pageToken) {
143
-            $pageToken = (string)$criteria->pageToken;
143
+            $pageToken = (string) $criteria->pageToken;
144 144
             $request->setPageToken($pageToken);
145 145
         }
146 146
 
Please login to merge, or discard this patch.
src/apis/Analytics.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -220,11 +220,11 @@
 block discarded – undo
220 220
             case 'float':
221 221
             case 'time':
222 222
             case 'percent':
223
-                return (float)$value;
223
+                return (float) $value;
224 224
                 break;
225 225
 
226 226
             default:
227
-                return (string)$value;
227
+                return (string) $value;
228 228
         }
229 229
     }
230 230
 }
Please login to merge, or discard this patch.
src/models/Info.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
         // Make sure $forceConnect is going to be a boolean
59 59
         if (is_string($this->forceConnect)) {
60
-            $this->forceConnect = (bool)$this->forceConnect;
60
+            $this->forceConnect = (bool) $this->forceConnect;
61 61
         }
62 62
 
63 63
         if (is_string($this->token)) {
Please login to merge, or discard this patch.
src/migrations/m180529_125418_info.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             $settings = Json::decode($settingsJson);
62 62
         }
63 63
 
64
-        if($settings) {
64
+        if ($settings) {
65 65
             $forceConnect = $settings['forceConnect'];
66 66
             $token = $settings['token'];
67 67
         }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
         // Get rid of the old plugin settings
78 78
         echo '    > remove old plugin settings ...';
79
-        if($settings) {
79
+        if ($settings) {
80 80
             unset($settings['forceConnect'], $settings['token']);
81 81
             $settingsJson = Json::encode($settings);
82 82
             $this->update('{{%plugins}}', ['settings' => $settingsJson], ['id' => $row['id']]);
Please login to merge, or discard this patch.
src/base/PluginTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
 
210 210
         $infoRowExists = false;
211 211
 
212
-        if(Craft::$app->getDb()->tableExists('{{%analytics_info}}', false)) {
212
+        if (Craft::$app->getDb()->tableExists('{{%analytics_info}}', false)) {
213 213
             $infoRowExists = (new Query())
214 214
                 ->from(['{{%analytics_info}}'])
215 215
                 ->one();
Please login to merge, or discard this patch.
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.