Completed
Push — master ( 5855e7...4c70a1 )
by Robin
02:57
created
src/Command/XpathCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @return array
54
+     * @return string[]
55 55
      */
56 56
     public function getExpectedResponseCodes()
57 57
     {
Please login to merge, or discard this patch.
src/Client.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -110,6 +110,7 @@
 block discarded – undo
110 110
 
111 111
     /**
112 112
      * {@inheritdoc}
113
+     * @param string $value
113 114
      */
114 115
     public function authInfo($type, $value)
115 116
     {
Please login to merge, or discard this patch.
src/Command/PostArticleCommand.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -48,6 +48,11 @@
 block discarded – undo
48 48
    
49 49
    /**
50 50
     * Constructor.
51
+    * @param string $groups
52
+    * @param string $subject
53
+    * @param string $body
54
+    * @param string $from
55
+    * @param string|null $headers
51 56
     */
52 57
    public function __construct($groups, $subject, $body, $from, $headers)
53 58
     {
Please login to merge, or discard this patch.
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.