Completed
Push — master ( ba520a...811d9a )
by Gabriel
02:05
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 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace Junty\Stream;
10 10
 
11 11
 use Psr\Http\Message\StreamInterface;
12
-use GuzzleHttp\Psr7;
13 12
 use Junty\Stream\Stream;
14 13
 use Junty\Plugin\PluginInterface;
15 14
 use Junty\ToDir\ToDirPlugin;
Please login to merge, or discard this patch.
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,6 +104,11 @@  discard block
 block discarded – undo
104 104
         return $this;
105 105
     }
106 106
 
107
+    /**
108
+     * @param callable $cb
109
+     *
110
+     * @return \Closure
111
+     */
107 112
     private function getPipeCallback($cb) : callable
108 113
     {
109 114
         if (!($cb instanceof PluginInterface) && !is_callable($cb)) {
@@ -130,7 +135,7 @@  discard block
 block discarded – undo
130 135
      *
131 136
      * @param string $dest
132 137
      *
133
-     * @return callable
138
+     * @return ToDirPlugin
134 139
      */
135 140
     public function toDir(string $dest) : ToDirPlugin
136 141
     {
Please login to merge, or discard this patch.