@@ -12,6 +12,10 @@ discard block |
||
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 |
||
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 |
||
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(); |