Passed
Push — v1 ( f3f274...fd0661 )
by Andrew
12:23 queued 06:47
created
src/controllers/TablesController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             ->from(['{{%webperf_data_samples}}'])
101 101
             ->offset($offset)
102 102
             ;
103
-        if ((int)$siteId !== 0) {
103
+        if ((int) $siteId !== 0) {
104 104
             $query->where(['siteId' => $siteId]);
105 105
         }
106 106
         if ($filter !== '') {
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
             ->offset($offset)
209 209
             ->limit($per_page)
210 210
             ->orderBy("{$sortField} {$sortType}");
211
-        if ((int)$siteId !== 0) {
211
+        if ((int) $siteId !== 0) {
212 212
             $query->where(['siteId' => $siteId]);
213 213
         }
214 214
         if ($filter !== '') {
Please login to merge, or discard this patch.