Passed
Push — main ( 729eff...05ebe7 )
by
unknown
03:32
created
src/Model/LargestPages.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace App\Model;
5 5
 
Please login to merge, or discard this patch.
src/Model/ArticleInfo.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1319,10 +1319,10 @@
 block discarded – undo
1319 1319
         // Slice to the top 10.
1320 1320
         $topTenEditorsByAdded = array_keys(array_slice($topTenEditorsByAdded, 0, 10, true));
1321 1321
 
1322
-         // Get the sum of added text so that we can add in percentages.
1323
-         $topTenTotalAdded = array_sum(array_map(function ($editor) {
1324
-             return $this->editors[$editor]['added'];
1325
-         }, $topTenEditorsByAdded));
1322
+            // Get the sum of added text so that we can add in percentages.
1323
+            $topTenTotalAdded = array_sum(array_map(function ($editor) {
1324
+                return $this->editors[$editor]['added'];
1325
+            }, $topTenEditorsByAdded));
1326 1326
 
1327 1327
         // Then build a new array of top 10 editors by added text in the data structure needed for the chart.
1328 1328
         return array_map(function ($editor) use ($topTenTotalAdded) {
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\Model;
6 6
 
@@ -958,16 +958,16 @@  discard block
 block discarded – undo
958 958
 
959 959
             if ($info['all'] > 1) {
960 960
                 // Number of seconds/days between first and last edit.
961
-                $secs = $info['last']->getTimestamp() - $info['first']->getTimestamp();
961
+                $secs = $info['last']->getTimestamp()-$info['first']->getTimestamp();
962 962
                 $days = $secs / (60 * 60 * 24);
963 963
 
964 964
                 // Average time between edits (in days).
965
-                $this->editors[$editor]['atbe'] = round($days / ($info['all'] - 1), 1);
965
+                $this->editors[$editor]['atbe'] = round($days / ($info['all']-1), 1);
966 966
             }
967 967
         }
968 968
 
969 969
         // Loop through again and add percentages.
970
-        $this->topTenEditorsByEdits = array_map(function ($editor) use ($topTenCount) {
970
+        $this->topTenEditorsByEdits = array_map(function($editor) use ($topTenCount) {
971 971
             $editor['percentage'] = 100 * ($editor['value'] / $topTenCount);
972 972
             return $editor;
973 973
         }, $topTenEditorsByEdits);
@@ -985,7 +985,7 @@  discard block
 block discarded – undo
985 985
     {
986 986
         // First sort editors array by the amount of text they added.
987 987
         $topTenEditorsByAdded = $this->editors;
988
-        uasort($topTenEditorsByAdded, function ($a, $b) {
988
+        uasort($topTenEditorsByAdded, function($a, $b) {
989 989
             if ($a['added'] === $b['added']) {
990 990
                 return 0;
991 991
             }
@@ -996,12 +996,12 @@  discard block
 block discarded – undo
996 996
         $topTenEditorsByAdded = array_keys(array_slice($topTenEditorsByAdded, 0, 10, true));
997 997
 
998 998
          // Get the sum of added text so that we can add in percentages.
999
-         $topTenTotalAdded = array_sum(array_map(function ($editor) {
999
+         $topTenTotalAdded = array_sum(array_map(function($editor) {
1000 1000
              return $this->editors[$editor]['added'];
1001 1001
          }, $topTenEditorsByAdded));
1002 1002
 
1003 1003
         // Then build a new array of top 10 editors by added text in the data structure needed for the chart.
1004
-        return array_map(function ($editor) use ($topTenTotalAdded) {
1004
+        return array_map(function($editor) use ($topTenTotalAdded) {
1005 1005
             $added = $this->editors[$editor]['added'];
1006 1006
             return [
1007 1007
                 'label' => $editor,
Please login to merge, or discard this patch.
src/Model/GlobalContribs.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace App\Model;
5 5
 
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 
101 101
         if ($sorted) {
102 102
             // Sort.
103
-            uasort($this->globalEditCounts, function ($a, $b) {
104
-                return $b['total'] - $a['total'];
103
+            uasort($this->globalEditCounts, function($a, $b) {
104
+                return $b['total']-$a['total'];
105 105
             });
106 106
         }
107 107
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             $this->namespace,
139 139
             $this->start,
140 140
             $this->end,
141
-            $this->limit + 1,
141
+            $this->limit+1,
142 142
             $this->offset
143 143
         );
144 144
         $globalEdits = [];
Please login to merge, or discard this patch.
config/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,4 +20,4 @@
 block discarded – undo
20 20
 $_SERVER += $_ENV;
21 21
 $_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev';
22 22
 $_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
23
-$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
23
+$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int)$_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
Please login to merge, or discard this patch.
public/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     Request::setTrustedHosts([$trustedHosts]);
21 21
 }
22 22
 
23
-$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
23
+$kernel = new Kernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
24 24
 $request = Request::createFromGlobals();
25 25
 $response = $kernel->handle($request);
26 26
 $response->send();
Please login to merge, or discard this patch.
src/Repository/BlameRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace App\Repository;
5 5
 
Please login to merge, or discard this patch.
src/Repository/EditRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace App\Repository;
5 5
 
Please login to merge, or discard this patch.
src/Model/Blame.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace App\Model;
5 5
 
Please login to merge, or discard this patch.
src/Repository/GlobalContribsRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace App\Repository;
5 5
 
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
             $slice = $this->getDbList()[$dbName];
175 175
             // actor_revision table only includes users who have made at least one edit.
176 176
             $actorTable = $this->getTableName($dbName, 'actor', 'revision');
177
-            $queriesBySlice[$slice][] = "SELECT '$dbName' AS `dbName`, actor_id " .
177
+            $queriesBySlice[$slice][] = "SELECT '$dbName' AS `dbName`, actor_id ".
178 178
                 "FROM $actorTable WHERE $whereClause";
179 179
         }
180 180
 
@@ -309,13 +309,13 @@  discard block
 block discarded – undo
309 309
         // Re-assemble into UNIONed queries, executing as many per slice as possible.
310 310
         $revisions = [];
311 311
         foreach ($queriesBySlice as $slice => $queries) {
312
-            $sql = "SELECT * FROM ((\n" . join("\n) UNION (\n", $queries) . ")) a ORDER BY timestamp DESC LIMIT $limit";
312
+            $sql = "SELECT * FROM ((\n".join("\n) UNION (\n", $queries).")) a ORDER BY timestamp DESC LIMIT $limit";
313 313
             $revisions = array_merge($revisions, $this->executeProjectsQuery($slice, $sql)->fetchAllAssociative());
314 314
         }
315 315
 
316 316
         // If there are more than $limit results, re-sort by timestamp.
317 317
         if (count($revisions) > $limit) {
318
-            usort($revisions, function ($a, $b) {
318
+            usort($revisions, function($a, $b) {
319 319
                 if ($a['unix_timestamp'] === $b['unix_timestamp']) {
320 320
                     return 0;
321 321
                 }
Please login to merge, or discard this patch.