@@ -57,7 +57,7 @@ |
||
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)) { |
@@ -209,7 +209,7 @@ |
||
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(); |
@@ -69,7 +69,7 @@ |
||
69 | 69 | $reportsResponse = $this->getReportingReports($criterias); |
70 | 70 | |
71 | 71 | if ($toArray) { |
72 | - $reportsResponseArray = (array)$reportsResponse->toSimpleObject(); |
|
72 | + $reportsResponseArray = (array) $reportsResponse->toSimpleObject(); |
|
73 | 73 | |
74 | 74 | return $reportsResponseArray['reports']; |
75 | 75 | } |
@@ -67,10 +67,10 @@ discard block |
||
67 | 67 | $settingsJson = $row['settings']; |
68 | 68 | $settings = Json::decode($settingsJson); |
69 | 69 | |
70 | - if($settings) { |
|
70 | + if ($settings) { |
|
71 | 71 | $forceConnect = $settings['forceConnect']; |
72 | 72 | |
73 | - if(isset($settings['token'])) { |
|
73 | + if (isset($settings['token'])) { |
|
74 | 74 | $token = $settings['token']; |
75 | 75 | } |
76 | 76 | } |
@@ -85,10 +85,10 @@ discard block |
||
85 | 85 | |
86 | 86 | // Get rid of the old plugin settings |
87 | 87 | echo ' > remove old plugin settings ...'; |
88 | - if($settings) { |
|
88 | + if ($settings) { |
|
89 | 89 | unset($settings['forceConnect']); |
90 | 90 | |
91 | - if(isset($settings['token'])) { |
|
91 | + if (isset($settings['token'])) { |
|
92 | 92 | unset($settings['token']); |
93 | 93 | } |
94 | 94 |
@@ -115,7 +115,7 @@ |
||
115 | 115 | Craft::$app->getView()->registerAssetBundle(AnalyticsAsset::class); |
116 | 116 | } |
117 | 117 | |
118 | - Craft::setAlias('@analyticsLib', __DIR__ . '/../lib'); |
|
118 | + Craft::setAlias('@analyticsLib', __DIR__.'/../lib'); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
@@ -143,7 +143,7 @@ |
||
143 | 143 | |
144 | 144 | return $view->renderTemplate('analytics/_components/widgets/Report/body'); |
145 | 145 | } catch (\Exception $exception) { |
146 | - Craft::error('Couldn’t load report widget: '.$exception->getMessage(). " ".$exception->getTraceAsString(), __METHOD__); |
|
146 | + Craft::error('Couldn’t load report widget: '.$exception->getMessage()." ".$exception->getTraceAsString(), __METHOD__); |
|
147 | 147 | return $view->renderTemplate('analytics/_special/error'); |
148 | 148 | } |
149 | 149 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | try { |
38 | 38 | $response = Analytics::$plugin->getReports()->getEcommerceReport($viewId, $period); |
39 | - } catch(\Google_Service_Exception $googleServiceException) { |
|
39 | + } catch (\Google_Service_Exception $googleServiceException) { |
|
40 | 40 | return $this->handleGoogleServiceException($googleServiceException); |
41 | 41 | } |
42 | 42 | |
@@ -54,12 +54,12 @@ discard block |
||
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 $googleServiceException) { |
|
62 | + } catch (\Google_Service_Exception $googleServiceException) { |
|
63 | 63 | return $this->handleGoogleServiceException($googleServiceException); |
64 | 64 | } |
65 | 65 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | try { |
99 | 99 | $response = Analytics::$plugin->getReports()->getRealtimeReport($request); |
100 | - } catch(\Google_Service_Exception $googleServiceException) { |
|
100 | + } catch (\Google_Service_Exception $googleServiceException) { |
|
101 | 101 | return $this->handleGoogleServiceException($googleServiceException); |
102 | 102 | } |
103 | 103 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | |
190 | 190 | |
191 | 191 | return $this->asJson($response); |
192 | - } catch(\Google_Service_Exception $googleServiceException) { |
|
192 | + } catch (\Google_Service_Exception $googleServiceException) { |
|
193 | 193 | return $this->handleGoogleServiceException($googleServiceException); |
194 | 194 | } |
195 | 195 | } |
@@ -208,7 +208,7 @@ discard block |
||
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 | |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | |
349 | 349 | $totalRevenue = 0; |
350 | 350 | |
351 | - foreach($rows as $row) { |
|
351 | + foreach ($rows as $row) { |
|
352 | 352 | $totalRevenue += $row[1]; |
353 | 353 | } |
354 | 354 |
@@ -51,7 +51,7 @@ |
||
51 | 51 | Analytics::$plugin->getCache()->set($cacheId, $response, $cacheDuration); |
52 | 52 | } |
53 | 53 | |
54 | - return (array)$response; |
|
54 | + return (array) $response; |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -112,7 +112,7 @@ |
||
112 | 112 | $response['report'] = Analytics::$plugin->getApis()->getAnalyticsReporting()->getReport($this, $toArray); |
113 | 113 | $response['success'] = true; |
114 | 114 | } |
115 | - catch(\Exception $exception) |
|
115 | + catch (\Exception $exception) |
|
116 | 116 | { |
117 | 117 | $response['error'] = true; |
118 | 118 | $response['errorMessage'] = $exception->getMessage(); |