Passed
Push — master ( 13448c...369cdc )
by MusikAnimal
06:50
created
src/AppBundle/Controller/TopEditsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
         // Send all to the template.
157 157
         return $this->getFormattedResponse('topedits/result_article', [
158 158
             'xtPage' => 'TopEdits',
159
-            'xtTitle' => $this->user->getUsername() . ' - ' . $this->page->getTitle(),
159
+            'xtTitle' => $this->user->getUsername().' - '.$this->page->getTitle(),
160 160
             'project' => $this->project,
161 161
             'user' => $this->user,
162 162
             'page' => $this->page,
Please login to merge, or discard this patch.
src/AppBundle/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.