Completed
Pull Request — master (#67)
by Matthew
03:06
created
src/AppBundle/Controller/RfXAnalysisController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
15 15
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
16 16
 use Symfony\Component\HttpFoundation\Request;
17
-use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
18 17
 use Xtools\ProjectRepository;
19 18
 use Xtools\RFA;
20 19
 
Please login to merge, or discard this patch.
src/AppBundle/Controller/RfXVoteCalculatorController.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace AppBundle\Controller;
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6
-use Symfony\Component\CssSelector\Exception\InternalErrorException;
7
-use Symfony\Component\Debug\Exception\ContextErrorException;
8 6
 use Symfony\Component\HttpFoundation\Request;
9 7
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
10 8
 use Xtools\ProjectRepository;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      *
93 93
      * @Route("/rfap/{project}/{username}", name="rfapResult")
94 94
      *
95
-     * @return Response
95
+     * @return \Symfony\Component\HttpFoundation\Response
96 96
      */
97 97
     public function resultAction($project, $username)
98 98
     {
Please login to merge, or discard this patch.
src/Xtools/RFA.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      * Returns matches.
36 36
      *
37 37
      * @param string $input   The line we're looking for
38
-     * @param array  $matches Pointer to an array where we stash results
38
+     * @param string[]  $matches Pointer to an array where we stash results
39 39
      *
40 40
      * @TODO: Make this cleaner
41 41
      *
Please login to merge, or discard this patch.