Completed
Pull Request — master (#66)
by Greg
02:23
created
src/Parser/CommandInfo.php 1 patch
Doc Comments   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@  discard block
 block discarded – undo
129 129
         return new self($classNameOrInstance, $methodName, $cache);
130 130
     }
131 131
 
132
+    /**
133
+     * @param string $methodName
134
+     */
132 135
     protected function constructFromClassAndMethod($classNameOrInstance, $methodName)
133 136
     {
134 137
         $this->otherAnnotations = new AnnotationData();
@@ -423,7 +426,7 @@  discard block
 block discarded – undo
423 426
     /**
424 427
      * Set aliases that can be used in place of the command's primary name.
425 428
      *
426
-     * @param string|string[] $aliases
429
+     * @param string $aliases
427 430
      */
428 431
     public function setAliases($aliases)
429 432
     {
@@ -477,7 +480,7 @@  discard block
 block discarded – undo
477 480
     /**
478 481
      * Return the list of refleaction parameters.
479 482
      *
480
-     * @return ReflectionParameter[]
483
+     * @return \ReflectionParameter[]
481 484
      */
482 485
     public function getParameters()
483 486
     {
@@ -608,7 +611,7 @@  discard block
 block discarded – undo
608 611
      * Examine the parameters of the method for this command, and
609 612
      * build a list of commandline arguements for them.
610 613
      *
611
-     * @return array
614
+     * @return DefaultsWithDescriptions
612 615
      */
613 616
     protected function determineAgumentClassifications()
614 617
     {
@@ -628,6 +631,7 @@  discard block
 block discarded – undo
628 631
      * Examine the provided parameter, and determine whether it
629 632
      * is a parameter that will be filled in with a positional
630 633
      * commandline argument.
634
+     * @param DefaultsWithDescriptions $result
631 635
      */
632 636
     protected function addParameterToResult($result, $param)
633 637
     {
@@ -718,6 +722,8 @@  discard block
 block discarded – undo
718 722
     /**
719 723
      * Given a list that might be 'a b c' or 'a, b, c' or 'a,b,c',
720 724
      * convert the data into the last of these forms.
725
+     * @param string $text
726
+     * @return string
721 727
      */
722 728
     protected static function convertListToCommaSeparated($text)
723 729
     {
Please login to merge, or discard this patch.