Completed
Pull Request — master (#15)
by Sam
02:36
created
src/AppBundle/Helper/AutomatedEditsHelper.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,10 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\DBAL\Connection;
6 6
 use Psr\Cache\CacheItemPoolInterface;
7
-use Symfony\Component\Config\Definition\Exception\Exception;
8
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
9 7
 use Symfony\Component\DependencyInjection\ContainerInterface;
10
-use Symfony\Component\VarDumper\VarDumper;
11 8
 
12 9
 class AutomatedEditsHelper
13 10
 {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
         /** @var LabsHelper $labsHelper */
126 126
         $labsHelper = $this->container->get('app.labs_helper');
127 127
         $sql = "SELECT rev_comment FROM ".$labsHelper->getTable('revision')
128
-               ." WHERE rev_user=:userId ORDER BY rev_timestamp DESC LIMIT 1000";
128
+                ." WHERE rev_user=:userId ORDER BY rev_timestamp DESC LIMIT 1000";
129 129
         $resultQuery = $replicas->prepare($sql);
130 130
         $resultQuery->bindParam("userId", $userId);
131 131
         $resultQuery->execute();
Please login to merge, or discard this patch.