@@ -96,6 +96,9 @@ discard block |
||
96 | 96 | return $this->processResults($names, $result, $args, $annotationData); |
97 | 97 | } |
98 | 98 | |
99 | + /** |
|
100 | + * @param AnnotationData $annotationData |
|
101 | + */ |
|
99 | 102 | public function processResults($names, $result, $args, $annotationData) |
100 | 103 | { |
101 | 104 | return $this->hookManager()->alterResult($names, $result, $args, $annotationData); |
@@ -152,7 +155,7 @@ discard block |
||
152 | 155 | * should select the output format that is most appropriate |
153 | 156 | * for use in scripts (e.g. to pipe to another command). |
154 | 157 | * |
155 | - * @return string |
|
158 | + * @return boolean |
|
156 | 159 | */ |
157 | 160 | protected function getFormat($options) |
158 | 161 | { |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | /** |
246 | 246 | * Set aliases that can be used in place of the command's primary name. |
247 | 247 | * |
248 | - * @param string|string[] $aliases |
|
248 | + * @param string $aliases |
|
249 | 249 | */ |
250 | 250 | public function setAliases($aliases) |
251 | 251 | { |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | /** |
284 | 284 | * Return the list of refleaction parameters. |
285 | 285 | * |
286 | - * @return ReflectionParameter[] |
|
286 | + * @return \ReflectionParameter[] |
|
287 | 287 | */ |
288 | 288 | public function getParameters() |
289 | 289 | { |
@@ -381,7 +381,7 @@ discard block |
||
381 | 381 | * Examine the parameters of the method for this command, and |
382 | 382 | * build a list of commandline arguements for them. |
383 | 383 | * |
384 | - * @return array |
|
384 | + * @return DefaultsWithDescriptions |
|
385 | 385 | */ |
386 | 386 | protected function determineAgumentClassifications() |
387 | 387 | { |
@@ -401,6 +401,7 @@ discard block |
||
401 | 401 | * Examine the provided parameter, and determine whether it |
402 | 402 | * is a parameter that will be filled in with a positional |
403 | 403 | * commandline argument. |
404 | + * @param DefaultsWithDescriptions $result |
|
404 | 405 | */ |
405 | 406 | protected function addParameterToResult($result, $param) |
406 | 407 | { |
@@ -501,6 +502,8 @@ discard block |
||
501 | 502 | /** |
502 | 503 | * Given a list that might be 'a b c' or 'a, b, c' or 'a,b,c', |
503 | 504 | * convert the data into the last of these forms. |
505 | + * @param string $text |
|
506 | + * @return string |
|
504 | 507 | */ |
505 | 508 | protected static function convertListToCommaSeparated($text) |
506 | 509 | { |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Consolidation\AnnotatedCommand\Parser; |
3 | 3 | |
4 | -use Consolidation\AnnotatedCommand\Parser\Internal\CommandDocBlockParser; |
|
5 | 4 | use Consolidation\AnnotatedCommand\Parser\Internal\CommandDocBlockParserFactory; |
6 | 5 | use Consolidation\AnnotatedCommand\AnnotationData; |
7 | 6 |
@@ -255,7 +255,7 @@ |
||
255 | 255 | { |
256 | 256 | $names = array_merge( |
257 | 257 | (array)$names, |
258 | - ($annotationData == null) ? [] : array_map(function ($item) { return "@$item"; }, $annotationData->array_keys()) |
|
258 | + ($annotationData == null) ? [] : array_map(function($item) { return "@$item"; }, $annotationData->array_keys()) |
|
259 | 259 | ); |
260 | 260 | $names[] = '*'; |
261 | 261 | return array_merge( |