@@ -4,8 +4,6 @@ |
||
4 | 4 | use phpDocumentor\Reflection\DocBlock; |
5 | 5 | use phpDocumentor\Reflection\DocBlock\Tag\ParamTag; |
6 | 6 | use phpDocumentor\Reflection\DocBlock\Tag\ReturnTag; |
7 | -use Consolidation\AnnotatedCommand\Parser\CommandInfo; |
|
8 | -use Consolidation\AnnotatedCommand\Parser\DefaultsWithDescriptions; |
|
9 | 7 | |
10 | 8 | /** |
11 | 9 | * Given a class and method name, parse the annotations in the |
@@ -103,6 +103,9 @@ discard block |
||
103 | 103 | return $this->processResults($names, $result, $args, $annotationData); |
104 | 104 | } |
105 | 105 | |
106 | + /** |
|
107 | + * @param AnnotationData $annotationData |
|
108 | + */ |
|
106 | 109 | public function processResults($names, $result, $args, $annotationData) |
107 | 110 | { |
108 | 111 | return $this->hookManager()->alterResult($names, $result, $args, $annotationData); |
@@ -160,7 +163,7 @@ discard block |
||
160 | 163 | * should select the output format that is most appropriate |
161 | 164 | * for use in scripts (e.g. to pipe to another command). |
162 | 165 | * |
163 | - * @return string |
|
166 | + * @return boolean |
|
164 | 167 | */ |
165 | 168 | protected function getFormat($options) |
166 | 169 | { |
@@ -215,7 +218,7 @@ discard block |
||
215 | 218 | * @param int $status |
216 | 219 | * @param string $structuredOutput |
217 | 220 | * @param mixed $originalResult |
218 | - * @return type |
|
221 | + * @return integer |
|
219 | 222 | */ |
220 | 223 | protected function writeErrorMessage($output, $status, $structuredOutput, $originalResult) |
221 | 224 | { |
@@ -1,11 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Consolidation\AnnotatedCommand; |
3 | 3 | |
4 | -use Symfony\Component\Console\Command\Command; |
|
5 | 4 | use Symfony\Component\Console\Input\InputInterface; |
6 | 5 | use Symfony\Component\Console\Output\OutputInterface; |
7 | 6 | use Symfony\Component\Console\Output\ConsoleOutputInterface; |
8 | - |
|
9 | 7 | use Consolidation\OutputFormatters\FormatterManager; |
10 | 8 | use Consolidation\OutputFormatters\FormatterOptions; |
11 | 9 | use Consolidation\AnnotatedCommand\Hooks\HookManager; |