Completed
Push — master ( 481a63...e35b57 )
by Greg
11s
created
src/Collection/CollectionBuilder.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,6 +72,10 @@  discard block
 block discarded – undo
72 72
         $this->commandFile = $commandFile;
73 73
     }
74 74
 
75
+    /**
76
+     * @param \League\Container\ContainerInterface $container
77
+     * @param BuilderAwareInterface $commandFile
78
+     */
75 79
     public static function create($container, $commandFile)
76 80
     {
77 81
         $builder = new self($commandFile);
@@ -390,7 +394,7 @@  discard block
 block discarded – undo
390 394
      * @param InflectionInterface $task
391 395
      * @param array $args
392 396
      *
393
-     * @return \Robo\Collection\CompletionWrapper|\Robo\Task\Simulator
397
+     * @return TaskInterface
394 398
      */
395 399
     protected function fixTask($task, $args)
396 400
     {
Please login to merge, or discard this patch.
tests/_helpers/CliHelper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use Robo\Robo;
5 5
 use Robo\Collection\CollectionBuilder;
6 6
 use Symfony\Component\Console\Output\ConsoleOutput;
7
-
8 7
 use League\Container\ContainerAwareInterface;
9 8
 use League\Container\ContainerAwareTrait;
10 9
 
Please login to merge, or discard this patch.
src/Common/ProcessExecutor.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -24,6 +24,10 @@
 block discarded – undo
24 24
         $this->process = $process;
25 25
     }
26 26
 
27
+    /**
28
+     * @param \League\Container\ContainerInterface $container
29
+     * @param Process $process
30
+     */
27 31
     public static function create($container, $process)
28 32
     {
29 33
         $processExecutor = new self($process);
Please login to merge, or discard this patch.