Test Setup Failed
Branch master (46a5be)
by Kacper
05:10
created
Utils/BetterEmitter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
         return true;
49 49
     }
50 50
 
51
+    /**
52
+     * @param string $event
53
+     */
51 54
     public function emit($event, array $arguments = [])
52 55
     {
53 56
         foreach ($this->listeners($event) as $listener) {
Please login to merge, or discard this patch.
Xml/XmlElement.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@
 block discarded – undo
20 20
  */
21 21
 class XmlElement extends \DOMElement
22 22
 {
23
-    /** @return static */
23
+    /** @param string $uri
24
+/** @return static */
24 25
     public static function create($name = 'element', $content = null, $uri = null)
25 26
     {
26 27
         return self::_document()->importNode(new static($name, $content, $uri));
Please login to merge, or discard this patch.
Xml/XmlParser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -126,6 +126,9 @@
 block discarded – undo
126 126
         return [$name, $namespace];
127 127
     }
128 128
 
129
+    /**
130
+     * @param string|null $prefix
131
+     */
129 132
     private function _lookup($prefix, $namespaces)
130 133
     {
131 134
         if ($prefix === 'xmlns') {
Please login to merge, or discard this patch.