Completed
Push — master ( 27fd9f...f34fd0 )
by Sebastian
01:19
created
src/Command/Executable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
60 60
     public function getCommand() : string
61 61
     {
62 62
         return $this->cmd
63
-        . (count($this->options)   ? ' ' . implode(' ', $this->options)   : '')
64
-        . ($this->isSilent         ? ' 2> /dev/null'                      : '');
63
+        . (count($this->options) ? ' ' . implode(' ', $this->options) : '')
64
+        . ($this->isSilent ? ' 2> /dev/null' : '');
65 65
     }
66 66
 
67 67
     /**
Please login to merge, or discard this patch.
src/Processor/Symfony.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
  */
10 10
 namespace SebastianFeldmann\Cli\Processor;
11 11
 
12
-use RuntimeException;
13 12
 use SebastianFeldmann\Cli\Command\Result;
14 13
 use SebastianFeldmann\Cli\Processor;
15 14
 use Symfony\Component\Process\Process;
Please login to merge, or discard this patch.