Completed
Push — master ( 5855e7...4c70a1 )
by Robin
02:57
created
src/Socket/SocketInterface.php 1 patch
Doc Comments   +11 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@  discard block
 block discarded – undo
8 8
 interface SocketInterface
9 9
 {
10 10
     /**
11
-     * @param bool $toggle
12 11
      *
12
+     * @param boolean $blocking
13 13
      * @return self
14 14
      */
15 15
     public function setBlocking($blocking);
@@ -40,7 +40,17 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function eof();
42 42
 
43
+    /**
44
+     * @param integer $length
45
+     *
46
+     * @return string
47
+     */
43 48
     public function read($length);
44 49
 
50
+    /**
51
+     * @param string $data
52
+     *
53
+     * @return integer
54
+     */
45 55
     public function write($data);
46 56
 }
Please login to merge, or discard this patch.