Completed
Branch master (f0da9f)
by Greg
02:59
created
src/AnnotatedCommand.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -12,6 +12,10 @@  discard block
 block discarded – undo
12 12
     protected $commandProcessor;
13 13
     protected $annotationData;
14 14
 
15
+    /**
16
+     * @param string $name
17
+     * @param CommandProcessor $commandProcessor
18
+     */
15 19
     public function __construct(
16 20
         $name,
17 21
         $commandCallback,
@@ -30,6 +34,9 @@  discard block
 block discarded – undo
30 34
         $this->specialParameterClasses = $specialParameterClasses;
31 35
     }
32 36
 
37
+    /**
38
+     * @param InputInterface $input
39
+     */
33 40
     protected function getArgsWithPassThrough($input)
34 41
     {
35 42
         $args = $input->getArguments();
@@ -45,6 +52,9 @@  discard block
 block discarded – undo
45 52
         return $args;
46 53
     }
47 54
 
55
+    /**
56
+     * @param PassThroughArgsInput $input
57
+     */
48 58
     protected function appendPassThroughArgs($input, $args)
49 59
     {
50 60
         $passThrough = $input->getPassThroughArgs();
Please login to merge, or discard this patch.