Completed
Pull Request — master (#34)
by Greg
02:46
created
src/CommandProcessor.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,11 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Consolidation\AnnotatedCommand;
3 3
 
4
-use Symfony\Component\Console\Command\Command;
5
-use Symfony\Component\Console\Input\InputInterface;
6 4
 use Symfony\Component\Console\Output\OutputInterface;
7 5
 use Symfony\Component\Console\Output\ConsoleOutputInterface;
8
-
9 6
 use Consolidation\OutputFormatters\FormatterManager;
10 7
 use Consolidation\OutputFormatters\FormatterOptions;
11 8
 use Consolidation\AnnotatedCommand\Hooks\HookManager;
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Parser/Internal/CommandDocBlockParser2.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.