Passed
Push — main ( a3efe4...854c7e )
by
unknown
03:29
created
src/Model/AdminStats.php 1 patch
Spacing   +6 added lines, -6 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
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $stats = $this->groupStatsByUsername($stats);
99 99
 
100 100
         // Resort, as for some reason the SQL doesn't do this properly.
101
-        uasort($stats, function ($a, $b) {
101
+        uasort($stats, function($a, $b) {
102 102
             if ($a['total'] === $b['total']) {
103 103
                 return 0;
104 104
             }
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         $this->usersAndGroups = $this->project->getUsersInGroups($groupUserGroups['local'], $groupUserGroups['global']);
127 127
 
128 128
         // Populate $this->usersInGroup with users who are in the relevant user group for $this->group.
129
-        $this->usersInGroup = array_keys(array_filter($this->usersAndGroups, function ($groups) {
129
+        $this->usersInGroup = array_keys(array_filter($this->usersAndGroups, function($groups) {
130 130
             return in_array($this->getRelevantUserGroup(), $groups);
131 131
         }));
132 132
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         }
150 150
 
151 151
         if ($wikiPath) {
152
-            $out = array_map(function ($url) {
152
+            $out = array_map(function($url) {
153 153
                 return str_replace('.svg.png', '.svg', preg_replace('/.*\/18px-/', '', $url));
154 154
             }, $out);
155 155
         }
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function numDays(): int
165 165
     {
166
-        return (int)(($this->end - $this->start) / 60 / 60 / 24) + 1;
166
+        return (int)(($this->end-$this->start) / 60 / 60 / 24)+1;
167 167
     }
168 168
 
169 169
     /**
@@ -253,6 +253,6 @@  discard block
 block discarded – undo
253 253
      */
254 254
     public function getNumWithActionsNotInGroup(): int
255 255
     {
256
-        return count($this->adminStats) - $this->numWithActions;
256
+        return count($this->adminStats)-$this->numWithActions;
257 257
     }
258 258
 }
Please login to merge, or discard this patch.
src/Model/PageAssessments.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/TopEdits.php 1 patch
Spacing   +2 added lines, -2 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
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     {
164 164
         $firstDateTime = $this->topEdits[0]->getTimestamp();
165 165
         $lastDateTime = end($this->topEdits)->getTimestamp();
166
-        $secs = $firstDateTime->getTimestamp() - $lastDateTime->getTimestamp();
166
+        $secs = $firstDateTime->getTimestamp()-$lastDateTime->getTimestamp();
167 167
         $days = $secs / (60 * 60 * 24);
168 168
         return $days / count($this->topEdits);
169 169
     }
Please login to merge, or discard this patch.
src/Model/SimpleEditCounter.php 1 patch
Spacing   +2 added lines, -2 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
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public function getTotalEditCount(): int
156 156
     {
157
-        return $this->data['total_edit_count'] ?? $this->data['deleted_edit_count'] + $this->data['live_edit_count'];
157
+        return $this->data['total_edit_count'] ?? $this->data['deleted_edit_count']+$this->data['live_edit_count'];
158 158
     }
159 159
 
160 160
     /**
Please login to merge, or discard this patch.
src/Model/UserRights.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/Twig/AppExtension.php 1 patch
Spacing   +6 added lines, -6 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\Twig;
6 6
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     public function requestTime(): float
118 118
     {
119 119
         if (!isset($this->requestTime)) {
120
-            $this->requestTime = microtime(true) - $this->getRequest()->server->get('REQUEST_TIME_FLOAT');
120
+            $this->requestTime = microtime(true)-$this->getRequest()->server->get('REQUEST_TIME_FLOAT');
121 121
         }
122 122
 
123 123
         return $this->requestTime;
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
         }
545 545
 
546 546
         $sizeMessage = $this->numberFormat(
547
-            pow(1024, $base - floor($base)),
547
+            pow(1024, $base-floor($base)),
548 548
             $precision
549 549
         );
550 550
 
@@ -701,15 +701,15 @@  discard block
 block discarded – undo
701 701
 
702 702
         if ($seconds >= 86400) {
703 703
             // Over a day
704
-            $val = (int) floor($seconds / 86400);
704
+            $val = (int)floor($seconds / 86400);
705 705
             $key = 'days';
706 706
         } elseif ($seconds >= 3600) {
707 707
             // Over an hour, less than a day
708
-            $val = (int) floor($seconds / 3600);
708
+            $val = (int)floor($seconds / 3600);
709 709
             $key = 'hours';
710 710
         } elseif ($seconds >= 60) {
711 711
             // Over a minute, less than an hour
712
-            $val = (int) floor($seconds / 60);
712
+            $val = (int)floor($seconds / 60);
713 713
             $key = 'minutes';
714 714
         }
715 715
 
Please login to merge, or discard this patch.
src/EventSubscriber/DisabledToolSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace App\EventSubscriber;
6 6
 
Please login to merge, or discard this patch.
src/Model/CategoryEdits.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $this->repository = $repository;
49 49
         $this->project = $project;
50 50
         $this->user = $user;
51
-        $this->categories = array_map(function ($category) {
51
+        $this->categories = array_map(function($category) {
52 52
             return str_replace(' ', '_', $category);
53 53
         }, $categories);
54 54
         $this->start = $start;
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function getCategoriesNormalized(): array
82 82
     {
83
-        return array_map(function ($category) {
83
+        return array_map(function($category) {
84 84
             return str_replace('_', ' ', $category);
85 85
         }, $this->categories);
86 86
     }
Please login to merge, or discard this patch.
src/Controller/XtoolsController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
             throw new XtoolsHttpException(
297 297
                 $this->i18n->msg('not-opted-in', [
298 298
                     $this->getOptedInPage()->getTitle(),
299
-                    $this->i18n->msg('not-opted-in-link') .
299
+                    $this->i18n->msg('not-opted-in-link').
300 300
                         ' <https://www.mediawiki.org/wiki/Special:MyLanguage/XTools/Edit_Counter#restricted_stats>',
301 301
                     $this->i18n->msg('not-opted-in-login'),
302 302
                 ]),
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
             }
572 572
 
573 573
             throw new XtoolsHttpException(
574
-                $this->i18n->msg('too-many-edits', [ $user->maxEdits() ]),
574
+                $this->i18n->msg('too-many-edits', [$user->maxEdits()]),
575 575
                 $this->generateUrl($this->tooHighEditCountRoute(), $this->params),
576 576
                 $originalParams,
577 577
                 $this->isApi
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
         $params = $this->convertLegacyParams($params);
714 714
 
715 715
         // Remove blank values.
716
-        return array_filter($params, function ($param) {
716
+        return array_filter($params, function($param) {
717 717
             // 'namespace' or 'username' could be '0'.
718 718
             return null !== $param && '' !== $param;
719 719
         });
@@ -771,7 +771,7 @@  discard block
 block discarded – undo
771 771
             // Show warnings that the date range was truncated.
772 772
             $this->addFlashMessage('warning', 'date-range-too-wide', [$this->maxDays()]);
773 773
 
774
-            $startTime = strtotime('-' . $this->maxDays() . ' days', $endTime);
774
+            $startTime = strtotime('-'.$this->maxDays().' days', $endTime);
775 775
         }
776 776
 
777 777
         return [$startTime, $endTime];
@@ -911,7 +911,7 @@  discard block
 block discarded – undo
911 911
         }
912 912
 
913 913
         $elapsedTime = round(
914
-            microtime(true) - $this->request->server->get('REQUEST_TIME_FLOAT'),
914
+            microtime(true)-$this->request->server->get('REQUEST_TIME_FLOAT'),
915 915
             3
916 916
         );
917 917
 
@@ -952,7 +952,7 @@  discard block
 block discarded – undo
952 952
     public function addFullPageTitlesAndContinue(string $key, array $out, array $data): array
953 953
     {
954 954
         // Add full_page_title (in addition to the existing page_title and page_namespace keys).
955
-        $out[$key] = array_map(function ($rev) {
955
+        $out[$key] = array_map(function($rev) {
956 956
             return array_merge([
957 957
                 'full_page_title' => $this->getPageFromNsAndTitle(
958 958
                     (int)$rev['page_namespace'],
Please login to merge, or discard this patch.