Completed
Branch fix_issues (c69274)
by Dzmitry
03:25
created
src/ExecutionWrapper.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ExecutionResult.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
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
Please login to merge, or discard this patch.