Completed
Push — master ( b2eaa8...0f2645 )
by Gabriel
02:09
created
src/Junty/Exception/JuntyException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
         return new JuntyFileNotFound();
23 23
     }
24 24
 
25
+    /**
26
+     * @param string $taskName
27
+     */
25 28
     public static function taskNotRegistred($taskName)
26 29
     {
27 30
         return new TaskNotRegistred($taskName);
Please login to merge, or discard this patch.
src/Junty/Stream/StreamHandler.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,6 +104,9 @@  discard block
 block discarded – undo
104 104
         return $this;
105 105
     }
106 106
 
107
+    /**
108
+     * @return \Closure
109
+     */
107 110
     private function getPipeCallback($cb) : callable
108 111
     {
109 112
         if (!($cb instanceof PluginInterface) && !is_callable($cb)) {
@@ -130,7 +133,7 @@  discard block
 block discarded – undo
130 133
      *
131 134
      * @param string $dest
132 135
      *
133
-     * @return callable
136
+     * @return ToDirPlugin
134 137
      */
135 138
     public function toDir(string $dest)
136 139
     {
Please login to merge, or discard this patch.