Passed
Push — dependabot/npm_and_yarn/webpac... ( 977ca1 )
by
unknown
06:36
created
src/Monolog/WebProcessorMonolog.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\Monolog;
6 6
 
Please login to merge, or discard this patch.
src/Exception/XtoolsHttpException.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\Exception;
6 6
 
Please login to merge, or discard this patch.
src/EventSubscriber/ExceptionListener.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/EventSubscriber/RateLimitSubscriber.php 1 patch
Spacing   +5 added lines, -5 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\EventSubscriber;
6 6
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         $cacheItem = $this->cache->getItem($cacheKey);
141 141
 
142 142
         // If increment value already in cache, or start with 1.
143
-        $count = $cacheItem->isHit() ? (int) $cacheItem->get() + 1 : 1;
143
+        $count = $cacheItem->isHit() ? (int)$cacheItem->get()+1 : 1;
144 144
 
145 145
         // Check if limit has been exceeded, and if so, throw an error.
146 146
         if ($count > $this->rateLimit) {
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $cacheItem = $this->cache->getItem($cacheKey);
181 181
 
182 182
         // If increment value already in cache, or start with 1.
183
-        $count = $cacheItem->isHit() ? (int)$cacheItem->get() + 1 : 1;
183
+        $count = $cacheItem->isHit() ? (int)$cacheItem->get()+1 : 1;
184 184
 
185 185
         // Check if limit has been exceeded, and if so, add a log entry.
186 186
         if ($count > 3) {
@@ -255,8 +255,8 @@  discard block
 block discarded – undo
255 255
         $message = $this->i18n->msg('error-rate-limit', [
256 256
             $this->rateDuration,
257 257
             "<a href='/login'>".$this->i18n->msg('error-rate-limit-login')."</a>",
258
-            "<a href='https://www.mediawiki.org/wiki/Special:MyLanguage/XTools/API' target='_blank'>" .
259
-                $this->i18n->msg('api') .
258
+            "<a href='https://www.mediawiki.org/wiki/Special:MyLanguage/XTools/API' target='_blank'>".
259
+                $this->i18n->msg('api').
260 260
             "</a>",
261 261
         ]);
262 262
 
Please login to merge, or discard this patch.
src/Repository/EditSummaryRepository.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/UserRepository.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/AdminScoreRepository.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/AdminStatsRepository.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/PageAssessmentsRepository.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.