Completed
Pull Request — master (#51)
by Greg
02:38
created
src/CommandData.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -17,6 +17,10 @@  discard block
 block discarded – undo
17 17
     /** var boolean */
18 18
     protected $usesOutputInterface;
19 19
 
20
+    /**
21
+     * @param boolean $usesInputInterface
22
+     * @param boolean $usesOutputInterface
23
+     */
20 24
     public function __construct(
21 25
         AnnotationData $annotationData,
22 26
         InputInterface $input,
@@ -31,6 +35,9 @@  discard block
 block discarded – undo
31 35
         $this->usesOutputInterface = $usesOutputInterface;
32 36
     }
33 37
 
38
+    /**
39
+     * @return AnnotationData
40
+     */
34 41
     public function annotationData()
35 42
     {
36 43
         return $this->annotationData;
Please login to merge, or discard this patch.
src/CommandProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
      * @param int $status
253 253
      * @param string $structuredOutput
254 254
      * @param mixed $originalResult
255
-     * @return type
255
+     * @return integer
256 256
      */
257 257
     protected function writeErrorMessage($output, $status, $structuredOutput, $originalResult)
258 258
     {
Please login to merge, or discard this patch.
src/Hooks/ProcessResultInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
      * run, then execute it and return the new result.
20 20
      *
21 21
      * @param  mixed $result Result to (potentially) be processed
22
-     * @param  array $args Reference to commandline arguments and options
23 22
      *
24 23
      * @return mixed $result
25 24
      */
Please login to merge, or discard this patch.