Completed
Pull Request — master (#33)
by Matthew
03:07
created
src/Xtools/EditCounter.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Xtools;
4 4
 
5 5
 use \DateTime;
6
-use Symfony\Component\VarDumper\VarDumper;
7 6
 
8 7
 /**
9 8
  * An EditCounter provides statistics about a user's edits on a project.
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     protected function getRevisionCounts()
43 43
     {
44
-        if (! is_array($this->revisionCounts)) {
44
+        if (!is_array($this->revisionCounts)) {
45 45
             $this->revisionCounts = $this->getRepository()
46 46
                 ->getRevisionCounts($this->project, $this->user);
47 47
         }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     protected function getRevisionDates()
56 56
     {
57
-        if (! is_array($this->revisionDates)) {
57
+        if (!is_array($this->revisionDates)) {
58 58
             $this->revisionDates = $this->getRepository()
59 59
                 ->getRevisionDates($this->project, $this->user);
60 60
         }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     protected function getPageCounts()
69 69
     {
70
-        if (! is_array($this->pageCounts)) {
70
+        if (!is_array($this->pageCounts)) {
71 71
             $this->pageCounts = $this->getRepository()
72 72
                 ->getPageCounts($this->project, $this->user);
73 73
         }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected function getLogCounts()
82 82
     {
83
-        if (! is_array($this->logCounts)) {
83
+        if (!is_array($this->logCounts)) {
84 84
             $this->logCounts = $this->getRepository()
85 85
                 ->getLogCounts($this->project, $this->user);
86 86
         }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function countAllRevisions()
111 111
     {
112
-        return $this->countLiveRevisions() + $this->countDeletedRevisions();
112
+        return $this->countLiveRevisions()+$this->countDeletedRevisions();
113 113
     }
114 114
 
115 115
     /**
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      */
129 129
     public function countRevisionsWithoutComments()
130 130
     {
131
-        return $this->countAllRevisions() - $this->countRevisionsWithComments();
131
+        return $this->countAllRevisions()-$this->countRevisionsWithComments();
132 132
     }
133 133
 
134 134
     /**
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
      */
196 196
     public function countAllPagesEdited()
197 197
     {
198
-        return $this->countLivePagesEdited() + $this->countDeletedPagesEdited();
198
+        return $this->countLivePagesEdited()+$this->countDeletedPagesEdited();
199 199
     }
200 200
 
201 201
     /**
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      */
214 214
     public function countPagesCreated()
215 215
     {
216
-        return $this->countCreatedPagesLive() + $this->countPagesCreatedDeleted();
216
+        return $this->countCreatedPagesLive()+$this->countPagesCreatedDeleted();
217 217
     }
218 218
 
219 219
     /**
@@ -359,9 +359,9 @@  discard block
 block discarded – undo
359 359
     public function approvals()
360 360
     {
361 361
         $logCounts = $this->getLogCounts();
362
-        $total = $logCounts['review-approve'] +
363
-        (!empty($logCounts['review-approve-a']) ? $logCounts['review-approve-a'] : 0) +
364
-        (!empty($logCounts['review-approve-i']) ? $logCounts['review-approve-i'] : 0) +
362
+        $total = $logCounts['review-approve']+
363
+        (!empty($logCounts['review-approve-a']) ? $logCounts['review-approve-a'] : 0)+
364
+        (!empty($logCounts['review-approve-i']) ? $logCounts['review-approve-i'] : 0)+
365 365
         (!empty($logCounts['review-approve-ia']) ? $logCounts['review-approve-ia'] : 0);
366 366
         return $total;
367 367
     }
@@ -387,8 +387,8 @@  discard block
 block discarded – undo
387 387
         // Get counts.
388 388
         $editCounts = $this->getRepository()->getRevisionCountsAllProjects($user, $project);
389 389
         // Sort.
390
-        uasort($editCounts, function ($a, $b) {
391
-            return $b['total'] - $a['total'];
390
+        uasort($editCounts, function($a, $b) {
391
+            return $b['total']-$a['total'];
392 392
         });
393 393
         // Truncate, and return.
394 394
         return array_slice($editCounts, 0, $numProjects);
@@ -457,14 +457,14 @@  discard block
 block discarded – undo
457 457
             if (!isset($out['totals'][$ns])) {
458 458
                 $out['totals'][$ns] = [];
459 459
             }
460
-            $out['totals'][$ns][$total['year'] . $total['month']] = $total['count'];
460
+            $out['totals'][$ns][$total['year'].$total['month']] = $total['count'];
461 461
         }
462 462
         // Fill in the blanks (where no edits were made in a given month for a namespace).
463 463
         for ($y = $out['min_year']; $y <= $out['max_year']; $y++) {
464 464
             for ($m = 1; $m <= 12; $m++) {
465 465
                 foreach ($out['totals'] as $nsId => &$total) {
466
-                    if (!isset($total[$y . $m])) {
467
-                        $total[$y . $m] = 0;
466
+                    if (!isset($total[$y.$m])) {
467
+                        $total[$y.$m] = 0;
468 468
                     }
469 469
                 }
470 470
             }
Please login to merge, or discard this patch.
src/AppBundle/Controller/EditCounterController.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace AppBundle\Controller;
4 4
 
5
-use AppBundle\Helper\ApiHelper;
6
-use AppBundle\Helper\AutomatedEditsHelper;
7
-use AppBundle\Helper\LabsHelper;
8 5
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9 6
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
10 7
 use Symfony\Component\HttpFoundation\Request;
11
-use Symfony\Component\VarDumper\VarDumper;
12 8
 use Xtools\EditCounter;
13 9
 use Xtools\EditCounterRepository;
14 10
 use Xtools\Project;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,10 +65,10 @@
 block discarded – undo
65 65
         $username = $request->query->get('username');
66 66
 
67 67
         if (($project || $queryProject) && $username) {
68
-            $routeParams = [ 'project'=>($project ?: $queryProject), 'username' => $username ];
68
+            $routeParams = ['project'=>($project ?: $queryProject), 'username' => $username];
69 69
             return $this->redirectToRoute("EditCounterResult", $routeParams);
70 70
         } elseif (!$project && $queryProject) {
71
-            return $this->redirectToRoute("EditCounterProject", [ 'project'=>$queryProject ]);
71
+            return $this->redirectToRoute("EditCounterProject", ['project'=>$queryProject]);
72 72
         }
73 73
 
74 74
         $project = ProjectRepository::getProject($queryProject, $this->container);
Please login to merge, or discard this patch.
src/Xtools/EditCounterRepository.php 2 patches
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -249,7 +249,6 @@  discard block
 block discarded – undo
249 249
      * Get a user's total edit count on one or more project.
250 250
      * Requires the CentralAuth extension to be installed on the project.
251 251
      *
252
-     * @param string $username The username.
253 252
      * @param Project $project The project to start from.
254 253
      * @return mixed[]|boolean Array of total edit counts, or false if none could be found.
255 254
      */
@@ -296,7 +295,7 @@  discard block
 block discarded – undo
296 295
 
297 296
     /**
298 297
      * Get total edit counts for the top 10 projects for this user.
299
-     * @param string $username The username.
298
+     * @param string $stopwatchName
300 299
      * @return string[] Elements are arrays with 'dbName', 'url', 'name', and 'total'.
301 300
      */
302 301
     protected function getRevisionCountsAllProjectsNoCentralAuth(
@@ -402,7 +401,6 @@  discard block
 block discarded – undo
402 401
 
403 402
     /**
404 403
      * Get data for a bar chart of monthly edit totals per namespace.
405
-     * @param string $username The username.
406 404
      * @return string[]
407 405
      */
408 406
     public function getMonthCounts(Project $project, User $user)
@@ -438,7 +436,6 @@  discard block
 block discarded – undo
438 436
 
439 437
     /**
440 438
      * Get yearly edit totals for this user, grouped by namespace.
441
-     * @param string $username
442 439
      * @return string[] ['<namespace>' => ['<year>' => 'total', ... ], ... ]
443 440
      */
444 441
     public function getYearCounts(Project $project, User $user)
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function getRevisionCounts(Project $project, User $user)
18 18
     {
19 19
         // Set up cache.
20
-        $cacheKey = 'revisioncounts.' . $project->getDatabaseName() . '.' . $user->getUsername();
20
+        $cacheKey = 'revisioncounts.'.$project->getDatabaseName().'.'.$user->getUsername();
21 21
         if ($this->cache->hasItem($cacheKey)) {
22 22
             return $this->cache->getItem($cacheKey)->get();
23 23
         }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     public function getRevisionDates(Project $project, User $user)
79 79
     {
80 80
         // Set up cache.
81
-        $cacheKey = 'revisiondates.' . $project->getDatabaseName() . '.' . $user->getUsername();
81
+        $cacheKey = 'revisiondates.'.$project->getDatabaseName().'.'.$user->getUsername();
82 82
         if ($this->cache->hasItem($cacheKey)) {
83 83
             return $this->cache->getItem($cacheKey)->get();
84 84
         }
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
         $results = $resultQuery->fetchAll();
151 151
 
152 152
         $pageCounts = array_combine(
153
-            array_map(function ($e) {
153
+            array_map(function($e) {
154 154
                 return $e['source'];
155 155
             }, $results),
156
-            array_map(function ($e) {
156
+            array_map(function($e) {
157 157
                 return $e['value'];
158 158
             }, $results)
159 159
         );
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 
185 185
         // Query.
186 186
         $sql = "SELECT CONCAT(log_type, '-', log_action) AS source, COUNT(log_id) AS value
187
-            FROM " . $this->getTableName($project->getDatabaseName(), 'logging') . "
187
+            FROM " . $this->getTableName($project->getDatabaseName(), 'logging')."
188 188
             WHERE log_user = :userId
189 189
             GROUP BY log_type, log_action";
190 190
         $resultQuery = $this->getProjectsConnection()->prepare($sql);
@@ -193,10 +193,10 @@  discard block
 block discarded – undo
193 193
         $resultQuery->execute();
194 194
         $results = $resultQuery->fetchAll();
195 195
         $logCounts = array_combine(
196
-            array_map(function ($e) {
196
+            array_map(function($e) {
197 197
                 return $e['source'];
198 198
             }, $results),
199
-            array_map(function ($e) {
199
+            array_map(function($e) {
200 200
                 return $e['value'];
201 201
             }, $results)
202 202
         );
@@ -342,9 +342,9 @@  discard block
 block discarded – undo
342 342
         $resultQuery->bindParam(":id", $userId);
343 343
         $resultQuery->execute();
344 344
         $results = $resultQuery->fetchAll();
345
-        $namespaceTotals = array_combine(array_map(function ($e) {
345
+        $namespaceTotals = array_combine(array_map(function($e) {
346 346
             return $e['page_namespace'];
347
-        }, $results), array_map(function ($e) {
347
+        }, $results), array_map(function($e) {
348 348
             return $e['total'];
349 349
         }, $results));
350 350
         return $namespaceTotals;
@@ -366,14 +366,14 @@  discard block
 block discarded – undo
366 366
                 $revisions = $this->cacheGet($cacheKey);
367 367
             } else {
368 368
                 $sql =
369
-                    "SELECT rev_id, rev_timestamp, UNIX_TIMESTAMP(rev_timestamp) AS unix_timestamp, " .
370
-                    " rev_minor_edit, rev_deleted, rev_len, rev_parent_id, rev_comment, " .
371
-                    " page_title, page_namespace " . " FROM " .
372
-                    $this->labsHelper->getTable('revision', $project['dbName']) . "    JOIN " .
373
-                    $this->labsHelper->getTable('page', $project['dbName']) .
374
-                    "    ON (rev_page = page_id)" .
375
-                    " WHERE rev_timestamp > NOW() - INTERVAL $days DAY AND rev_user_text LIKE :username" .
376
-                    " ORDER BY rev_timestamp DESC" . " LIMIT 10";
369
+                    "SELECT rev_id, rev_timestamp, UNIX_TIMESTAMP(rev_timestamp) AS unix_timestamp, ".
370
+                    " rev_minor_edit, rev_deleted, rev_len, rev_parent_id, rev_comment, ".
371
+                    " page_title, page_namespace "." FROM ".
372
+                    $this->labsHelper->getTable('revision', $project['dbName'])."    JOIN ".
373
+                    $this->labsHelper->getTable('page', $project['dbName']).
374
+                    "    ON (rev_page = page_id)".
375
+                    " WHERE rev_timestamp > NOW() - INTERVAL $days DAY AND rev_user_text LIKE :username".
376
+                    " ORDER BY rev_timestamp DESC"." LIMIT 10";
377 377
                 $resultQuery = $this->replicas->prepare($sql);
378 378
                 $resultQuery->bindParam(":username", $username);
379 379
                 $resultQuery->execute();
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
             if (count($revisions) === 0) {
384 384
                 continue;
385 385
             }
386
-            $revsWithProject = array_map(function (&$item) use ($project) {
386
+            $revsWithProject = array_map(function(&$item) use ($project) {
387 387
                 $item['project_name'] = $project['wikiName'];
388 388
                 $item['project_url'] = $project['url'];
389 389
                 $item['project_db_name'] = $project['dbName'];
@@ -393,8 +393,8 @@  discard block
 block discarded – undo
393 393
             }, $revisions);
394 394
             $allRevisions = array_merge($allRevisions, $revsWithProject);
395 395
         }
396
-        usort($allRevisions, function ($a, $b) {
397
-            return $b['rev_timestamp'] - $a['rev_timestamp'];
396
+        usort($allRevisions, function($a, $b) {
397
+            return $b['rev_timestamp']-$a['rev_timestamp'];
398 398
         });
399 399
 
400 400
         return array_slice($allRevisions, 0, $topN);
@@ -416,12 +416,12 @@  discard block
 block discarded – undo
416 416
         $revisionTable = $this->getTableName($project->getDatabaseName(), 'revision');
417 417
         $pageTable = $this->getTableName($project->getDatabaseName(), 'page');
418 418
         $sql =
419
-            "SELECT " . "     YEAR(rev_timestamp) AS `year`," .
420
-            "     MONTH(rev_timestamp) AS `month`," . "     page_namespace," .
419
+            "SELECT "."     YEAR(rev_timestamp) AS `year`,".
420
+            "     MONTH(rev_timestamp) AS `month`,"."     page_namespace,".
421 421
             "     COUNT(rev_id) AS `count` "
422
-            . " FROM $revisionTable    JOIN $pageTable ON (rev_page = page_id)" .
423
-            " WHERE rev_user_text = :username" .
424
-            " GROUP BY YEAR(rev_timestamp), MONTH(rev_timestamp), page_namespace " .
422
+            . " FROM $revisionTable    JOIN $pageTable ON (rev_page = page_id)".
423
+            " WHERE rev_user_text = :username".
424
+            " GROUP BY YEAR(rev_timestamp), MONTH(rev_timestamp), page_namespace ".
425 425
             " ORDER BY rev_timestamp DESC";
426 426
         $resultQuery = $this->getProjectsConnection()->prepare($sql);
427 427
         $resultQuery->bindParam(":username", $username);
Please login to merge, or discard this patch.
src/AppBundle/Controller/AdminScoreController.php 2 patches
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
         $username = $request->query->get('username');
28 28
 
29 29
         if ($projectQuery != "" && $username != "") {
30
-            return $this->redirectToRoute("AdminScoreResult", [ 'project'=>$projectQuery, 'username' => $username ]);
30
+            return $this->redirectToRoute("AdminScoreResult", ['project'=>$projectQuery, 'username' => $username]);
31 31
         } elseif ($projectQuery != "") {
32
-            return $this->redirectToRoute("AdminScoreProject", [ 'project'=>$projectQuery ]);
32
+            return $this->redirectToRoute("AdminScoreProject", ['project'=>$projectQuery]);
33 33
         }
34 34
 
35 35
         // Otherwise fall through.
@@ -67,20 +67,20 @@  discard block
 block discarded – undo
67 67
         $archiveTable = $lh->getTable("archive", $dbName);
68 68
 
69 69
         // MULTIPLIERS (to review)
70
-        $ACCT_AGE_MULT = 1.25;   # 0 if = 365 jours
71
-        $EDIT_COUNT_MULT = 1.25;     # 0 if = 10 000
72
-        $USER_PAGE_MULT = 0.1;     # 0 if =
70
+        $ACCT_AGE_MULT = 1.25; # 0 if = 365 jours
71
+        $EDIT_COUNT_MULT = 1.25; # 0 if = 10 000
72
+        $USER_PAGE_MULT = 0.1; # 0 if =
73 73
         $PATROLS_MULT = 1; # 0 if =
74
-        $BLOCKS_MULT = 1.4;     # 0 if = 10
74
+        $BLOCKS_MULT = 1.4; # 0 if = 10
75 75
         $AFD_MULT = 1.15;
76
-        $RECENT_ACTIVITY_MULT = 0.9;     # 0 if =
76
+        $RECENT_ACTIVITY_MULT = 0.9; # 0 if =
77 77
         $AIV_MULT = 1.15;
78
-        $EDIT_SUMMARIES_MULT = 0.8;   # 0 if =
79
-        $NAMESPACES_MULT = 1.0;     # 0 if =
78
+        $EDIT_SUMMARIES_MULT = 0.8; # 0 if =
79
+        $NAMESPACES_MULT = 1.0; # 0 if =
80 80
         $PAGES_CREATED_LIVE_MULT = 1.4; # 0 if =
81 81
         $PAGES_CREATED_ARCHIVE_MULT = 1.4; # 0 if =
82
-        $RPP_MULT = 1.15;     # 0 if =
83
-        $USERRIGHTS_MULT = 0.75;   # 0 if =
82
+        $RPP_MULT = 1.15; # 0 if =
83
+        $USERRIGHTS_MULT = 0.75; # 0 if =
84 84
 
85 85
         // Grab the connection to the replica database (which is separate from the above)
86 86
         $conn = $this->get('doctrine')->getManager("replicas")->getConnection();
@@ -156,15 +156,15 @@  discard block
 block discarded – undo
156 156
                 $now = new DateTime();
157 157
                 $date = new DateTime($value);
158 158
                 $diff = $date->diff($now);
159
-                $formula = 365*$diff->format("%y")+30*$diff->format("%m")+$diff->format("%d");
159
+                $formula = 365 * $diff->format("%y")+30 * $diff->format("%m")+$diff->format("%d");
160 160
                 $value = $formula-365;
161 161
             }
162 162
 
163 163
             if ($key == "id") {
164 164
                 $id = $value;
165 165
             } else {
166
-                $multiplierKey = strtoupper($row["source"] . "_MULT");
167
-                $multiplier = ( isset($$multiplierKey) ? $$multiplierKey : 1 );
166
+                $multiplierKey = strtoupper($row["source"]."_MULT");
167
+                $multiplier = (isset($$multiplierKey) ? $$multiplierKey : 1);
168 168
                 $score = max(min($value * $multiplier, 100), -100);
169 169
                 $master[$key]["mult"] = $multiplier;
170 170
                 $master[$key]["value"] = $value;
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
         }
175 175
 
176 176
         if ($id == 0) {
177
-            $this->addFlash("notice", [ "no-result", $username ]);
178
-            return $this->redirectToRoute("AdminScore", [ "project"=>$project ]);
177
+            $this->addFlash("notice", ["no-result", $username]);
178
+            return $this->redirectToRoute("AdminScore", ["project"=>$project]);
179 179
         }
180 180
 
181 181
         return $this->render('adminscore/result.html.twig', [
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6 6
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7 7
 use Symfony\Component\HttpFoundation\Request;
8
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
9 8
 use DateTime;
10 9
 use Xtools\ProjectRepository;
11 10
 
Please login to merge, or discard this patch.
src/AppBundle/Controller/SimpleEditCounterController.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
         $username = $request->query->get('username');
32 32
 
33 33
         if ($projectQuery != "" && $username != "") {
34
-            $routeParams = [ 'project'=>$projectQuery, 'username' => $username ];
34
+            $routeParams = ['project'=>$projectQuery, 'username' => $username];
35 35
             return $this->redirectToRoute("SimpleEditCounterResult", $routeParams);
36 36
         } elseif ($projectQuery != "") {
37
-            return $this->redirectToRoute("SimpleEditCounterProject", [ 'project'=>$projectQuery ]);
37
+            return $this->redirectToRoute("SimpleEditCounterProject", ['project'=>$projectQuery]);
38 38
         }
39 39
 
40 40
         // Otherwise fall through.
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
         $resultQuery->execute();
88 88
 
89 89
         if ($resultQuery->errorCode() > 0) {
90
-            $this->addFlash("notice", [ "no-result", $username ]);
91
-            return $this->redirectToRoute("SimpleEditCounterProject", [ "project"=>$project ]);
90
+            $this->addFlash("notice", ["no-result", $username]);
91
+            return $this->redirectToRoute("SimpleEditCounterProject", ["project"=>$project]);
92 92
         }
93 93
 
94 94
         // Fetch the result data
@@ -112,16 +112,16 @@  discard block
 block discarded – undo
112 112
                 $rev = $row["value"];
113 113
             }
114 114
             if ($row["source"] == "groups") {
115
-                $groups .= $row["value"]. ", ";
115
+                $groups .= $row["value"].", ";
116 116
             }
117 117
         }
118 118
 
119 119
         // Unknown user - If the user is created the $results variable will have 3 entries.
120 120
         // This is a workaround to detect non-existent IPs.
121 121
         if (count($results) < 3 && $arch == 0 && $rev == 0) {
122
-            $this->addFlash('notice', [ "no-result", $username ]);
122
+            $this->addFlash('notice', ["no-result", $username]);
123 123
 
124
-            return $this->redirectToRoute("SimpleEditCounterProject", [ "project"=>$project ]);
124
+            return $this->redirectToRoute("SimpleEditCounterProject", ["project"=>$project]);
125 125
         }
126 126
 
127 127
         // Remove the last comma and space
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             'project_url' => $url,
152 152
             'id' => $id,
153 153
             'arch' => $arch,
154
-            'rev' => $rev + $arch,
154
+            'rev' => $rev+$arch,
155 155
             'live' => $rev,
156 156
             'groups' => $groups,
157 157
             'globalGroups' => $globalGroups,
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6 6
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
-use Symfony\Component\Config\Definition\Exception\Exception;
8 7
 use Symfony\Component\HttpFoundation\Request;
9
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
10 8
 use Xtools\ProjectRepository;
11 9
 
12 10
 class SimpleEditCounterController extends Controller
Please login to merge, or discard this patch.
src/AppBundle/Controller/PagesController.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
7 7
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
8 8
 use Symfony\Component\HttpFoundation\Request;
9
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
10 9
 use Xtools\ProjectRepository;
11 10
 
12 11
 class PagesController extends Controller
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
                 'username' => $username,
58 58
             ]);
59 59
         } elseif ($projectQuery != "") {
60
-            return $this->redirectToRoute("PagesProject", [ 'project'=>$projectQuery ]);
60
+            return $this->redirectToRoute("PagesProject", ['project'=>$projectQuery]);
61 61
         }
62 62
 
63 63
         // set default wiki so we can populate the namespace selector
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
             JOIN $revisionTable ON page_id = rev_page
184 184
             $paJoin
185 185
             WHERE $whereRev AND rev_parent_id = '0' $namespaceConditionRev $redirectCondition
186
-            " . ($hasPageAssessments ? "GROUP BY rev_page" : "") . "
186
+            ".($hasPageAssessments ? "GROUP BY rev_page" : "")."
187 187
             )
188 188
 
189 189
             UNION
@@ -267,8 +267,8 @@  discard block
 block discarded – undo
267 267
         }
268 268
 
269 269
         if ($total < 1) {
270
-            $this->addFlash("notice", [ "no-result", $username ]);
271
-            return $this->redirectToRoute("PagesProject", [ "project"=>$project ]);
270
+            $this->addFlash("notice", ["no-result", $username]);
271
+            return $this->redirectToRoute("PagesProject", ["project"=>$project]);
272 272
         }
273 273
 
274 274
         ksort($pagesByNamespaceByDate);
Please login to merge, or discard this patch.
src/AppBundle/Helper/LabsHelper.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace AppBundle\Helper;
4 4
 
5
-use Symfony\Component\Config\Definition\Exception\Exception;
6 5
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
7 6
 use Symfony\Component\DependencyInjection\ContainerInterface;
8
-use Symfony\Component\VarDumper\VarDumper;
9 7
 
10 8
 class LabsHelper
11 9
 {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         // Create the query we're going to run against the meta database
79 79
         $wikiQuery = $this->client->createQueryBuilder();
80 80
         $wikiQuery
81
-            ->select([ 'dbname', 'name', 'url', 'lang' ])
81
+            ->select(['dbname', 'name', 'url', 'lang'])
82 82
             ->from('wiki')
83 83
             ->where($wikiQuery->expr()->eq('dbname', ':project'))
84 84
             // The meta database will have the project's URL stored as https://en.wikipedia.org
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     public function allProjects()
130 130
     {
131 131
         $wikiQuery = $this->client->createQueryBuilder();
132
-        $wikiQuery->select([ 'dbName', 'name', 'url' ])->from('wiki');
132
+        $wikiQuery->select(['dbName', 'name', 'url'])->from('wiki');
133 133
         $stmt = $wikiQuery->execute();
134 134
         $out = $stmt->fetchAll();
135 135
         return $out;
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         // as required by Labs.  We combine $table with
153 153
         // $table_extension in order to generate the new table name
154 154
         if ($this->isLabs() && $table_extension !== null) {
155
-            $table = $table . "_" . $table_extension;
155
+            $table = $table."_".$table_extension;
156 156
         }
157 157
 
158 158
         // Use the table specified in the table mapping configuration, if present.
Please login to merge, or discard this patch.