Completed
Push — master ( 381036...d6bde4 )
by Alexander
19:09
created
src/DependencyInjection/Configuration.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Task\TaskBundle\DependencyInjection;
13 13
 
14
-use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
15 14
 use Symfony\Component\Config\Definition\Builder\TreeBuilder;
16 15
 use Symfony\Component\Config\Definition\ConfigurationInterface;
17 16
 
Please login to merge, or discard this patch.
src/Executor/ExecutionProcessFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      */
46 46
     public function create($uuid)
47 47
     {
48
-        $command = implode(' ', [$this->consolePath, 'task:execute', $uuid, '--env=' . $this->environment]);
48
+        $command = implode(' ', [$this->consolePath, 'task:execute', $uuid, '--env='.$this->environment]);
49 49
 
50 50
         if (method_exists(Process::class, 'fromShellCommandline')) {
51 51
             $process = Process::fromShellCommandline($command);
Please login to merge, or discard this patch.