Completed
Push — master ( dc78a7...e8b6e1 )
by Greg
10s
created
src/CommandProcessor.php 1 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/Hooks/HookManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.