Passed
Push — develop ( 3c6e41...12d2e9 )
by Andrew
03:47
created
src/controllers/ChartsController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                 ])
75 75
                 ->where("dateUpdated >= ( CURDATE() - INTERVAL '{$days}' DAY )")
76 76
                 ->andWhere(['not', [$column => null]]);
77
-            if ((int)$siteId !== 0) {
77
+            if ((int) $siteId !== 0) {
78 78
                 $query->andWhere(['siteId' => $siteId]);
79 79
             }
80 80
             if ($pageUrl !== '') {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 ])
92 92
                 ->where("\"dateUpdated\" >= ( CURRENT_TIMESTAMP - INTERVAL '{$days} days' )")
93 93
                 ->andWhere(['not', [$column => null]]);
94
-            if ((int)$siteId !== 0) {
94
+            if ((int) $siteId !== 0) {
95 95
                 $query->andWhere(['siteId' => $siteId]);
96 96
             }
97 97
             $stats = $query->all();
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
                 ])
138 138
                 ->where("dateUpdated >= ( CURDATE() - INTERVAL '{$days}' DAY )")
139 139
                 ->andWhere(['not', [$column => null]]);
140
-            if ((int)$siteId !== 0) {
140
+            if ((int) $siteId !== 0) {
141 141
                 $query->andWhere(['siteId' => $siteId]);
142 142
             }
143 143
             $query
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
                 ])
159 159
                 ->where("\"dateUpdated\" >= ( CURRENT_TIMESTAMP - INTERVAL '{$days} days' )")
160 160
                 ->andWhere(['not', [$column => null]]);
161
-            if ((int)$siteId !== 0) {
161
+            if ((int) $siteId !== 0) {
162 162
                 $query->andWhere(['siteId' => $siteId]);
163 163
             }
164 164
             $query
Please login to merge, or discard this patch.