Completed
Push — master ( 31e4dd...c38430 )
by Christian
07:22
created
src/Controller/AppKernelController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
 use Symfony\Component\HttpFoundation\JsonResponse;
25 25
 use Symfony\Component\HttpFoundation\Request;
26 26
 use Symfony\Component\HttpFoundation\Response;
27
-use Tenside\Core\Util\PhpProcessSpawner;
28 27
 use Tenside\CoreBundle\Annotation\ApiDescription;
28
+use Tenside\Core\Util\PhpProcessSpawner;
29 29
 
30 30
 /**
31 31
  * Controller for manipulating the AppKernel file.
Please login to merge, or discard this patch.
src/Controller/SelfTestController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@
 block discarded – undo
22 22
 
23 23
 use Nelmio\ApiDocBundle\Annotation\ApiDoc;
24 24
 use Symfony\Component\HttpFoundation\JsonResponse;
25
-use Tenside\Core\SelfTest\Cli\SelfTestCliCanFork;
26
-use Tenside\Core\SelfTest\Php\SelfTestEnvPopulated;
27 25
 use Tenside\CoreBundle\Annotation\ApiDescription;
28 26
 use Tenside\Core\SelfTest\Cli\SelfTestCanSpawnProcesses;
29 27
 use Tenside\Core\SelfTest\Cli\SelfTestCliArguments;
28
+use Tenside\Core\SelfTest\Cli\SelfTestCliCanFork;
30 29
 use Tenside\Core\SelfTest\Cli\SelfTestCliRuntime;
31 30
 use Tenside\Core\SelfTest\Generic\SelfTestCalledViaHttps;
32 31
 use Tenside\Core\SelfTest\Generic\SelfTestFileOwnerMatches;
33 32
 use Tenside\Core\SelfTest\Php\SelfTestAllowUrlFopenEnabled;
33
+use Tenside\Core\SelfTest\Php\SelfTestEnvPopulated;
34 34
 use Tenside\Core\SelfTest\Php\SelfTestSuhosin;
35 35
 use Tenside\Core\SelfTest\SelfTest;
36 36
 
Please login to merge, or discard this patch.
src/Controller/TaskRunnerController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
 use Symfony\Component\HttpFoundation\Request;
28 28
 use Symfony\Component\HttpKernel\Exception\NotAcceptableHttpException;
29 29
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
30
-use Tenside\Core\Util\PhpProcessSpawner;
31 30
 use Tenside\CoreBundle\Annotation\ApiDescription;
32 31
 use Tenside\Core\Task\Task;
33 32
 use Tenside\Core\Util\JsonArray;
33
+use Tenside\Core\Util\PhpProcessSpawner;
34 34
 
35 35
 /**
36 36
  * Lists and executes queued tasks.
Please login to merge, or discard this patch.
src/DependencyInjection/Factory/TensideJsonConfigFactory.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
 
21 21
 namespace Tenside\CoreBundle\DependencyInjection\Factory;
22 22
 
23
+use Tenside\CoreBundle\Util\HomePathDeterminator;
23 24
 use Tenside\Core\Task\TaskFactoryInterface;
24 25
 use Tenside\Core\Task\TaskList;
25
-use Tenside\CoreBundle\Util\HomePathDeterminator;
26 26
 
27 27
 /**
28 28
  * This class creates a composerJson instance.
Please login to merge, or discard this patch.
src/Controller/ComposerJsonController.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
         $errors   = str_replace(dirname($tempFile), '', $errors);
157 157
         $warnings = str_replace(dirname($tempFile), '', $warnings);
158 158
 
159
-        $lineMapper = function ($str) {
159
+        $lineMapper = function($str) {
160 160
             if (preg_match('#Parse error on line (\d+)#', $str, $match)) {
161 161
                 return ['line' => $match[1], 'msg' => $str];
162 162
             }
Please login to merge, or discard this patch.