@@ -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 | { |
@@ -255,7 +255,7 @@ |
||
255 | 255 | { |
256 | 256 | $names = array_merge( |
257 | 257 | (array)$names, |
258 | - ($annotationData == null) ? [] : array_map(function ($item) { |
|
258 | + ($annotationData == null) ? [] : array_map(function($item) { |
|
259 | 259 | return "@$item"; |
260 | 260 | }, $annotationData->keys()) |
261 | 261 | ); |