Completed
Pull Request — development (#897)
by
unknown
48s
created
htdocs/thumbs.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 );
38 38
 if ($r) {
39 39
     if ($r['object_type'] == 1) {
40
-        $check = (int) $connection
40
+        $check = (int)$connection
41 41
             ->fetchOne(
42 42
                 'SELECT COUNT(*)
43 43
                  FROM `cache_logs`
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
         }
64 64
     } elseif ($r['object_type'] == 2) {
65
-        $check = (int) $connection
65
+        $check = (int)$connection
66 66
             ->fetchOne(
67 67
                 'SELECT COUNT(*)
68 68
                            FROM `caches`
Please login to merge, or discard this patch.
htdocs/adminuser.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -166,22 +166,22 @@
 block discarded – undo
166 166
 
167 167
     $tpl->assign('showdetails', true);
168 168
 
169
-    $r['hidden'] = (int) $connection->fetchOne(
169
+    $r['hidden'] = (int)$connection->fetchOne(
170 170
         'SELECT COUNT(*) FROM `caches` WHERE `user_id`=:userId', ['userId' => $r['user_id']]
171 171
     );
172
-    $r['hidden_active'] = (int) $connection->fetchOne(
172
+    $r['hidden_active'] = (int)$connection->fetchOne(
173 173
         'SELECT COUNT(*) FROM `caches` WHERE `user_id`= :userId AND `status`=1',
174 174
         ['userId' => $r['user_id']]
175 175
     );
176
-    $r['logentries'] = (int) $connection->fetchOne(
176
+    $r['logentries'] = (int)$connection->fetchOne(
177 177
         'SELECT COUNT(*) FROM `cache_logs` WHERE `user_id`= :userId',
178 178
         ['userId' => $r['user_id']]
179 179
     );
180
-    $r['deleted_logentries'] = (int) $connection->fetchOne(
180
+    $r['deleted_logentries'] = (int)$connection->fetchOne(
181 181
         'SELECT COUNT(*) FROM `cache_logs_archived` WHERE `user_id`= :userId',
182 182
         ['userId' => $r['user_id']]
183 183
     );
184
-    $r['reports'] = (int) $connection->fetchOne(
184
+    $r['reports'] = (int)$connection->fetchOne(
185 185
         'SELECT COUNT(*) FROM `cache_reports` WHERE `userid`= :userId',
186 186
         ['userId' => $r['user_id']]
187 187
     );
Please login to merge, or discard this patch.
htdocs/adminhistory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@
 block discarded – undo
28 28
         ['wp' => $_REQUEST['wp']]
29 29
     );
30 30
 } else {
31
-    $cacheId = isset($_REQUEST['cacheid']) ? (int) $_REQUEST['cacheid'] : -1;
31
+    $cacheId = isset($_REQUEST['cacheid']) ? (int)$_REQUEST['cacheid'] : -1;
32 32
 }
33 33
 
34 34
 $showHistory = false;
35 35
 $error = '';
36 36
 
37 37
 if ($cacheId >= 0 &&
38
-    $connection->fetchOne('SELECT COUNT(*) FROM `caches` WHERE `cache_id`=:id',['id' => $cacheId]) <> 1)
38
+    $connection->fetchOne('SELECT COUNT(*) FROM `caches` WHERE `cache_id`=:id', ['id' => $cacheId]) <> 1)
39 39
 {
40 40
     $error = $translate->t('Cache not found', '', '', 0);
41 41
 } elseif ($cacheId > 0) {
Please login to merge, or discard this patch.
htdocs/usertops.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
 $tpl->name = 'usertops';
14 14
 $tpl->menuitem = MNU_CACHES_USERTOPS;
15 15
 
16
-$userId = (int) isset($_REQUEST['userid']) ? $_REQUEST['userid']: 0;
16
+$userId = (int)isset($_REQUEST['userid']) ? $_REQUEST['userid'] : 0;
17 17
 $ocOnly = isset($_REQUEST['oconly']) && $_REQUEST['oconly'];
18 18
 
19
-$sUsername = $connection->fetchOne('SELECT `username` FROM `user` WHERE `user_id` = :userId',['userId' => $userId]);
19
+$sUsername = $connection->fetchOne('SELECT `username` FROM `user` WHERE `user_id` = :userId', ['userId' => $userId]);
20 20
 if ($sUsername == null) {
21 21
     $tpl->error(ERROR_USER_NOT_EXISTS);
22 22
 }
Please login to merge, or discard this patch.
htdocs/index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -75,16 +75,16 @@  discard block
 block discarded – undo
75 75
     // current cache and log-counters
76 76
     $tpl->assign(
77 77
         'count_hiddens',
78
-        number1000((int) $connection->fetchOne('SELECT COUNT(*) AS `hiddens` FROM `caches` WHERE `status` = 1'))
78
+        number1000((int)$connection->fetchOne('SELECT COUNT(*) AS `hiddens` FROM `caches` WHERE `status` = 1'))
79 79
     );
80 80
     $tpl->assign(
81 81
         'count_founds',
82
-        number1000((int) $connection->fetchOne('SELECT COUNT(*) AS `founds` FROM `cache_logs` WHERE `type` = 1'))
82
+        number1000((int)$connection->fetchOne('SELECT COUNT(*) AS `founds` FROM `cache_logs` WHERE `type` = 1'))
83 83
     );
84 84
     $tpl->assign(
85 85
         'count_users',
86 86
         number1000(
87
-            (int) $connection->fetchOne(
87
+            (int)$connection->fetchOne(
88 88
                 'SELECT COUNT(*) AS `users`
89 89
                  FROM (
90 90
                        SELECT DISTINCT `user_id`
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     // get total event count for all countries
103 103
     $tpl->assign(
104 104
         'total_events',
105
-        (int) $connection->fetchOne(
105
+        (int)$connection->fetchOne(
106 106
             'SELECT COUNT(*)
107 107
              FROM `caches`
108 108
              WHERE `type` = 6
Please login to merge, or discard this patch.
htdocs/src/OcLegacy/Admin/Gdpr/GdprHandler.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
                 WHERE cache_id = :cacheId;
228 228
 SQL
229 229
             , [
230
-                'cacheId' => (int) $cache['cache_id'],
230
+                'cacheId' => (int)$cache['cache_id'],
231 231
             ]);
232 232
 
233 233
             $this->connection->executeQuery(<<<'SQL'
@@ -239,19 +239,19 @@  discard block
 block discarded – undo
239 239
                 WHERE cache_id = :cacheId
240 240
 SQL
241 241
             , [
242
-                'cacheId' => (int) $cache['cache_id'],
242
+                'cacheId' => (int)$cache['cache_id'],
243 243
             ]);
244 244
 
245 245
             $this->connection->executeQuery('DELETE FROM cache_desc_modified WHERE cache_id = :cacheId', [
246
-                'cacheId' => (int) $cache['cache_id'],
246
+                'cacheId' => (int)$cache['cache_id'],
247 247
             ]);
248 248
 
249 249
             $this->connection->executeQuery('DELETE FROM cache_ignore WHERE cache_id = :cacheId', [
250
-                'cacheId' => (int) $cache['cache_id'],
250
+                'cacheId' => (int)$cache['cache_id'],
251 251
             ]);
252 252
 
253 253
             $this->connection->executeQuery('DELETE FROM caches_modified WHERE cache_id = :cacheId', [
254
-                'cacheId' => (int) $cache['cache_id'],
254
+                'cacheId' => (int)$cache['cache_id'],
255 255
             ]);
256 256
         }
257 257
     }
@@ -265,8 +265,8 @@  discard block
 block discarded – undo
265 265
             return [];
266 266
         }
267 267
 
268
-        $ids = array_map(static function (array $cache) use ($idField) {
269
-            return (int) $cache[$idField];
268
+        $ids = array_map(static function(array $cache) use ($idField) {
269
+            return (int)$cache[$idField];
270 270
         }, $data);
271 271
 
272 272
         $pictures = $this->connection->fetchAllAssociative('SELECT * FROM pictures WHERE object_id IN (' . implode(',', $ids) . ') AND object_type = :objectType', [
@@ -286,8 +286,8 @@  discard block
 block discarded – undo
286 286
             return [];
287 287
         }
288 288
 
289
-        $ids = array_map(static function (array $cache) use ($idField) {
290
-            return (int) $cache[$idField];
289
+        $ids = array_map(static function(array $cache) use ($idField) {
290
+            return (int)$cache[$idField];
291 291
         }, $data);
292 292
 
293 293
         return $this->connection->fetchAllAssociative('SELECT * FROM pictures_modified WHERE object_id IN (' . implode(',', $ids) . ') AND object_type = :objectType', [
Please login to merge, or discard this patch.
htdocs_symfony/src/Controller/Backend/OCOnly81Controller.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
     private function ocOnly81_get_matrixData()
62 62
     : array
63 63
     {
64
-        for ($i = 0; $i <= 8; $i ++) {
65
-            for ($j = 0; $j <= 8; $j ++) {
64
+        for ($i = 0; $i <= 8; $i++) {
65
+            for ($j = 0; $j <= 8; $j++) {
66 66
                 $matrix[$i][$j] = 0;
67 67
                 $dsum[$i] = 0;
68 68
                 $tsum[$i] = 0;
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
         $data = $qb->executeQuery()->fetchAllAssociative();
80 80
 
81 81
         foreach ($data as $item) {
82
-            $matrix[$item['difficulty'] - 2][$item['terrain'] - 2] ++;
82
+            $matrix[$item['difficulty'] - 2][$item['terrain'] - 2]++;
83 83
         }
84 84
 
85
-        for ($i = 0; $i <= 8; $i ++) {
85
+        for ($i = 0; $i <= 8; $i++) {
86 86
             $dsum[$i] = $dsum[$i] + array_sum($matrix[$i]);
87 87
             $tsum[$i] = $tsum[$i] + array_sum(array_column($matrix, $i));
88 88
         }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                     'count' => 1
124 124
                 ];
125 125
             } else {
126
-                $result[$item['user_id']]['count'] ++;
126
+                $result[$item['user_id']]['count']++;
127 127
             }
128 128
         }
129 129
 
Please login to merge, or discard this patch.
htdocs/lib2/OcSmarty.class.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     public $compile_id = null;
54 54
 
55
-    public $cache_id = null;    // This is a smarty caching ID, not a caches.cache_id.
55
+    public $cache_id = null; // This is a smarty caching ID, not a caches.cache_id.
56 56
 
57 57
     public string $title = '';
58 58
 
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
 
493 493
         $args = func_get_args();
494 494
         unset($args[0]);
495
-        for ($i = 1; isset($args[$i]); $i ++) {
495
+        for ($i = 1; isset($args[$i]); $i++) {
496 496
             $this->assign('p' . $i, $args[$i]);
497 497
         }
498 498
 
@@ -794,7 +794,7 @@  discard block
 block discarded – undo
794 794
         // |foo|bar
795 795
         // |foo:$foo->bar
796 796
         $this->_mod_regexp = '(?:\|@?\w+(?::(?:\w+|' . $this->_num_const_regexp . '|'
797
-                             . $this->_obj_call_regexp . '|' . $this->_avar_regexp . '|' . $this->_qstr_regexp .'))*)';
797
+                             . $this->_obj_call_regexp . '|' . $this->_avar_regexp . '|' . $this->_qstr_regexp . '))*)';
798 798
 
799 799
         // matches valid function name:
800 800
         // foo123
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
         // "text"|bar
816 816
         // $foo->bar
817 817
         $this->_param_regexp = '(?:\s*(?:' . $this->_obj_call_regexp . '|'
818
-                               . $this->_var_regexp . '|' . $this->_num_const_regexp  . '|\w+)(?>' . $this->_mod_regexp . '*)\s*)';
818
+                               . $this->_var_regexp . '|' . $this->_num_const_regexp . '|\w+)(?>' . $this->_mod_regexp . '*)\s*)';
819 819
 
820 820
         // matches valid parenthesised function parameters:
821 821
         //
Please login to merge, or discard this patch.