Completed
Pull Request — master (#34)
by Ghitu
21:00
created
src/Options.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -358,7 +358,6 @@
 block discarded – undo
358 358
     /**
359 359
      * Set users jid.
360 360
      *
361
-     * @param string $jid
362 361
      * @return $this
363 362
      */
364 363
     public function setSid($sid)
Please login to merge, or discard this patch.
src/Protocol/BlockUser.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,6 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Set abberID.
81 81
      *
82
-     * @param string $nickname
83 82
      * @return $this
84 83
      */
85 84
     public function setJabberID($accountjid)
@@ -101,7 +100,6 @@  discard block
 block discarded – undo
101 100
     /**
102 101
      * Set abberID.
103 102
      *
104
-     * @param string $nickname
105 103
      * @return $this
106 104
      */
107 105
     public function setFrom($from)
Please login to merge, or discard this patch.
src/Protocol/Register.php 1 patch
Doc Comments   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,9 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * Constructor.
28 28
      *
29
-     * @param integer $priority
30 29
      * @param string $to
31
-     * @param string $nickname
32 30
      */
33 31
     public function __construct($to = null, $from = null, $step = 'one')
34 32
     {
@@ -102,7 +100,6 @@  discard block
 block discarded – undo
102 100
     /**
103 101
      * Set abberID.
104 102
      *
105
-     * @param string $nickname
106 103
      * @return $this
107 104
      */
108 105
     public function setJabberID($accountjid)
@@ -124,7 +121,7 @@  discard block
 block discarded – undo
124 121
     /**
125 122
      * Set abberID.
126 123
      *
127
-     * @param string $nickname
124
+     * @param string|null $to
128 125
      * @return $this
129 126
      */
130 127
     public function setTo($to)
@@ -145,7 +142,6 @@  discard block
 block discarded – undo
145 142
     /**
146 143
      * Set abberID.
147 144
      *
148
-     * @param string $nickname
149 145
      * @return $this
150 146
      */
151 147
     public function setPassword($password)
@@ -167,7 +163,6 @@  discard block
 block discarded – undo
167 163
     /**
168 164
      * Set abberID.
169 165
      *
170
-     * @param string $nickname
171 166
      * @return $this
172 167
      */
173 168
     public function setFrom($from)
@@ -176,6 +171,9 @@  discard block
 block discarded – undo
176 171
         return $this;
177 172
     }
178 173
 
174
+    /**
175
+     * @param string $step
176
+     */
179 177
     public function setStep($step)
180 178
     {
181 179
         $this->step = (string) $step;
Please login to merge, or discard this patch.
src/Protocol/UnblockUser.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,6 @@
 block discarded – undo
76 76
     /**
77 77
      * Set abberID.
78 78
      *
79
-     * @param string $nickname
80 79
      * @return $this
81 80
      */
82 81
     public function setJabberID($accountjid)
Please login to merge, or discard this patch.
src/Protocol/vCard.php 1 patch
Doc Comments   -7 removed lines patch added patch discarded remove patch
@@ -45,9 +45,6 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * Constructor.
47 47
      *
48
-     * @param integer $priority
49
-     * @param string $to
50
-     * @param string $nickname
51 48
      */
52 49
     public function __construct($firstname = null, $lastname = null,  $jabberid = null)
53 50
     {
@@ -107,7 +104,6 @@  discard block
 block discarded – undo
107 104
     /**
108 105
      * Set nickname.
109 106
      *
110
-     * @param string $nickname
111 107
      * @return $this
112 108
      */
113 109
     public function setFirstname($firstname)
@@ -129,7 +125,6 @@  discard block
 block discarded – undo
129 125
     /**
130 126
      * Set nickname.
131 127
      *
132
-     * @param string $nickname
133 128
      * @return $this
134 129
      */
135 130
     public function setLastname($lastname)
@@ -151,7 +146,6 @@  discard block
 block discarded – undo
151 146
     /**
152 147
      * Set abberID.
153 148
      *
154
-     * @param string $nickname
155 149
      * @return $this
156 150
      */
157 151
     public function setJabberID($jabberid)
@@ -217,7 +211,6 @@  discard block
 block discarded – undo
217 211
     /**
218 212
      * Set url.
219 213
      *
220
-     * @param string $image base64
221 214
      * @return $this
222 215
      */
223 216
     public function setUrl($url)
Please login to merge, or discard this patch.