@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * @param string $command Sprintf formatted string @see http://php.net/manual/en/function.sprintf.php |
| 36 | - * @param array $params |
|
| 36 | + * @param string[] $params |
|
| 37 | 37 | * @return ExecutionResult |
| 38 | 38 | */ |
| 39 | 39 | public function exec($command, $params) |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | use ivol\Config\ConfigurationFactory; |
| 5 | 5 | use ivol\EventDispatcher\AfterExecuteEvent; |
| 6 | 6 | use ivol\EventDispatcher\BeforeExecuteEvent; |
| 7 | -use ivol\EventDispatcher\EscapeArgsSubscriber; |
|
| 8 | 7 | use Symfony\Component\EventDispatcher\EventDispatcher; |
| 9 | 8 | |
| 10 | 9 | class ExecutionWrapper |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | public function getOutput() |
| 24 | 24 | { |
| 25 | - return $this->output ? implode('\n', $this->output): ''; |
|
| 25 | + return $this->output ? implode('\n', $this->output) : ''; |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | |
@@ -1,3 +1,3 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -require_once __DIR__ . '/../vendor/autoload.php'; |
|
| 4 | 3 | \ No newline at end of file |
| 4 | +require_once __DIR__.'/../vendor/autoload.php'; |
|
| 5 | 5 | \ No newline at end of file |