Completed
Push — master ( bd2b4b...e19a0a )
by Frederik
03:38 queued 01:06
created
src/Stream/ResourceStream.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @return mixed
52
+     * @return resource
53 53
      */
54 54
     public function detach()
55 55
     {
Please login to merge, or discard this patch.
src/Protocol/ConnectionInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@  discard block
 block discarded – undo
8 8
     /**
9 9
      * @param string $name
10 10
      * @param \Closure $callback
11
+     * @return void
11 12
      */
12 13
     public function addListener(string $name, \Closure $callback): void;
13 14
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param float $timeout
43
+     * @return void
42 44
      */
43 45
     public function timeout(float $timeout): void;
44 46
 
Please login to merge, or discard this patch.
src/Stream/AsciiEncodedStream.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @return mixed
52
+     * @return resource
53 53
      */
54 54
     public function detach()
55 55
     {
Please login to merge, or discard this patch.
src/Stream/StringStream.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @return mixed
52
+     * @return resource
53 53
      */
54 54
     public function detach()
55 55
     {
Please login to merge, or discard this patch.
src/StreamInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,10 +10,13 @@
 block discarded – undo
10 10
      */
11 11
     public function __toString(): string;
12 12
     
13
+    /**
14
+     * @return void
15
+     */
13 16
     public function close(): void;
14 17
 
15 18
     /**
16
-     * @return mixed
19
+     * @return resource
17 20
      */
18 21
     public function detach();
19 22
 
Please login to merge, or discard this patch.
src/Mime/MultiPart.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
 
163 163
     /**
164 164
      * @param MessageInterface $message
165
-     * @return MultiPart
165
+     * @return MultiPartInterface
166 166
      */
167 167
     public static function fromMessage(MessageInterface $message): self
168 168
     {
Please login to merge, or discard this patch.