Completed
Pull Request — master (#46)
by
unknown
03:41
created
src/Stream/XMLStream.php 1 patch
Doc Comments   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -176,6 +176,7 @@  discard block
 block discarded – undo
176 176
      *
177 177
      * Method resets the parser instance if <?xml is found. Overwise it clears the DOM document.
178 178
      *
179
+     * @param string $source
179 180
      * @return void
180 181
      */
181 182
     protected function clearDocument($source)
@@ -203,9 +204,6 @@  discard block
 block discarded – undo
203 204
     /**
204 205
      * Starting tag found.
205 206
      *
206
-     * @param resource $parser  XML parser
207
-     * @param string   $name    Element name
208
-     * @param attribs  $attribs Element attributes
209 207
      * @return void
210 208
      */
211 209
     protected function startXml()
@@ -322,8 +320,6 @@  discard block
 block discarded – undo
322 320
     /**
323 321
      * Data found.
324 322
      *
325
-     * @param resource $parser XML parser
326
-     * @param string   $data   Element data
327 323
      * @return void
328 324
      */
329 325
     protected function dataXml()
@@ -340,7 +336,7 @@  discard block
 block discarded – undo
340 336
      *
341 337
      * @param string  $event
342 338
      * @param boolean $startTag
343
-     * @param array   $params
339
+     * @param \DOMElement[]   $params
344 340
      * @return void
345 341
      */
346 342
     protected function cacheEvent($event, $startTag, $params)
Please login to merge, or discard this patch.
src/Util/XML.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -68,8 +68,6 @@
 block discarded – undo
68 68
      * <b>Hint:</b> this function works like <code>sprintf</code>
69 69
      *
70 70
      * @param string $message
71
-     * @param mixed  $args
72
-     * @param mixed  $...
73 71
      * @return string
74 72
      */
75 73
     public static function quoteMessage($message)
Please login to merge, or discard this patch.
src/Protocol/Presence.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     /**
198 198
      * Get to.
199 199
      *
200
-     * @return string¦null
200
+     * @return string|null
201 201
      */
202 202
     public function getTo()
203 203
     {
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     /**
242 242
      * Get channel password.
243 243
      *
244
-     * @return string¦null
244
+     * @return string
245 245
      */
246 246
     public function getPassword()
247 247
     {
@@ -251,7 +251,6 @@  discard block
 block discarded – undo
251 251
     /**
252 252
      * Set channel password.
253 253
      *
254
-     * @param string|null $to
255 254
      * @return $this
256 255
      */
257 256
     public function setPassword($password = null)
Please login to merge, or discard this patch.