Passed
Push — node-encore-updates ( 4b2d45...308be8 )
by MusikAnimal
03:41
created
src/Twig/TopNavExtension.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\Twig;
5 5
 
Please login to merge, or discard this patch.
src/Kernel.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;
6 6
 
Please login to merge, or discard this patch.
src/Controller/AdminStatsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
         $actions = is_array($actionsQuery) ? $actionsQuery : explode('|', $actionsQuery);
119 119
 
120 120
         // Filter out any invalid section IDs.
121
-        $actions = array_filter($actions, function ($action) use ($group) {
121
+        $actions = array_filter($actions, function($action) use ($group) {
122 122
             return in_array($action, $this->getActionNames($group));
123 123
         });
124 124
 
Please login to merge, or discard this patch.
src/Controller/EditCounterController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
         $sections = is_array($sectionsQuery) ? $sectionsQuery : explode('|', $sectionsQuery);
173 173
 
174 174
         // Filter out any invalid section IDs.
175
-        $sections = array_filter($sections, function ($section) {
175
+        $sections = array_filter($sections, function($section) {
176 176
             return in_array($section, $this->getSectionNames());
177 177
         });
178 178
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
         }
243 243
 
244 244
         $ret = [
245
-            'xtTitle' => $this->user->getUsername() . ' - ' . $this->project->getTitle(),
245
+            'xtTitle' => $this->user->getUsername().' - '.$this->project->getTitle(),
246 246
             'xtPage' => 'EditCounter',
247 247
             'user' => $this->user,
248 248
             'project' => $this->project,
Please login to merge, or discard this patch.
src/Controller/TopEditsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
         // Send all to the template.
167 167
         return $this->getFormattedResponse('topedits/result_article', [
168 168
             'xtPage' => 'TopEdits',
169
-            'xtTitle' => $this->user->getUsername() . ' - ' . $this->page->getTitle(),
169
+            'xtTitle' => $this->user->getUsername().' - '.$this->page->getTitle(),
170 170
             'te' => $topEdits,
171 171
         ]);
172 172
     }
Please login to merge, or discard this patch.
src/Controller/AutomatedEditsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
             'total_editcount' => $this->autoEdits->getEditCount(),
273 273
             'automated_editcount' => $this->autoEdits->getAutomatedCount(),
274 274
         ];
275
-        $ret['nonautomated_editcount'] = $ret['total_editcount'] - $ret['automated_editcount'];
275
+        $ret['nonautomated_editcount'] = $ret['total_editcount']-$ret['automated_editcount'];
276 276
 
277 277
         if (isset($this->params['tools'])) {
278 278
             $tools = $this->autoEdits->getToolCounts();
Please login to merge, or discard this patch.
src/Controller/LargestPagesController.php 1 patch
Spacing   +2 added lines, -2 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\Controller;
5 5
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $pages = [];
129 129
         foreach ($lp->getResults() as $index => $page) {
130 130
             $pages[] = [
131
-                'rank' => $index + 1,
131
+                'rank' => $index+1,
132 132
                 'page_title' => $page->getTitle(true),
133 133
                 'length' => $page->getLength(),
134 134
             ];
Please login to merge, or discard this patch.
src/Controller/QuoteController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
 
198 198
         // Number the quotes, since they somehow have significance.
199 199
         foreach ($quotes as $index => $quote) {
200
-            $numberedQuotes[(string)($index + 1)] = $quote;
200
+            $numberedQuotes[(string)($index+1)] = $quote;
201 201
         }
202 202
 
203 203
         return new JsonResponse($numberedQuotes, Response::HTTP_OK);
Please login to merge, or discard this patch.
src/Controller/CategoryEditsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         // 'Category:', which sometimes is used cross-wiki (because it still works).
129 129
         $normalized = false;
130 130
         $nsName = $this->project->getNamespaces()[14].':';
131
-        $this->categories = array_map(function ($category) use ($nsName, &$normalized) {
131
+        $this->categories = array_map(function($category) use ($nsName, &$normalized) {
132 132
             if (0 === strpos($category, $nsName) || 0 === strpos($category, 'Category:')) {
133 133
                 $normalized = true;
134 134
             }
Please login to merge, or discard this patch.