Completed
Pull Request — master (#561)
by Ivan
03:17
created
tests/unit/AAA_RunnerErrorTest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 use Robo\Robo;
3 3
 
4
-use Robo\Config\ConfigProcessor;
5
-use Robo\Config\YamlConfigLoader;
6
-
7 4
 /**
8 5
  * This test must run first. :(
9 6
  */
Please login to merge, or discard this patch.
tests/unit/ConfigurationInjectionTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 use Robo\Robo;
3
-
4 3
 use Robo\Config\ConfigProcessor;
5 4
 use Robo\Config\YamlConfigLoader;
6 5
 
Please login to merge, or discard this patch.
tests/unit/RunnerTest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 use Robo\Robo;
3 3
 
4
-use Robo\Config\ConfigProcessor;
5
-use Robo\Config\YamlConfigLoader;
6
-
7 4
 class RunnerTest extends \Codeception\TestCase\Test
8 5
 {
9 6
     /**
Please login to merge, or discard this patch.
src/Config/ConfigProcessor.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,6 @@
 block discarded – undo
128 128
     /**
129 129
      * Evaluate one configuration item.
130 130
      *
131
-     * @param array $processed
132 131
      * @param array $config
133 132
      * @return array
134 133
      */
Please login to merge, or discard this patch.
src/Config/YamlConfigLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             $this->config = [];
21 21
             return $this;
22 22
         }
23
-        $this->config = (array) Yaml::parse(file_get_contents($path));
23
+        $this->config = (array)Yaml::parse(file_get_contents($path));
24 24
         return $this;
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Task/Docker/Run.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     }
127 127
 
128 128
     /**
129
-     * @param string|\Robo\Contract\CommandInterface $run
129
+     * @param string $run
130 130
      *
131 131
      * @return $this
132 132
      */
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
      * inherited from ExecTrait.
156 156
      *
157 157
      * @param array $env
158
-     * @return type
158
+     * @return Run
159 159
      */
160 160
     public function envVars(array $env)
161 161
     {
Please login to merge, or discard this patch.