Completed
Push — master ( e80ea0...ba2e48 )
by Randy
02:42
created
src/AssignableInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 
21 21
     /**
22 22
      * @param string $value
23
+     * @return void
23 24
      */
24 25
     public function setValue(string $value);
25 26
 
Please login to merge, or discard this patch.
src/PrefixableInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -10,6 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * @param string $prefix
13
+     * @return void
13 14
      */
14 15
     public function setPrefix(string $prefix);
15 16
 
Please login to merge, or discard this patch.
src/Visitor/AttributeVisitableInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -10,6 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * @param AttributeVisitorInterface $visitor
13
+     * @return void
13 14
      */
14 15
     public function accept(AttributeVisitorInterface $visitor);
15 16
 }
16 17
\ No newline at end of file
Please login to merge, or discard this patch.
src/Visitor/AttributeVisitorInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -13,11 +13,13 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * @param Attribute $attribute
16
+     * @return void
16 17
      */
17 18
     public function visitAttribute(Attribute $attribute);
18 19
 
19 20
     /**
20 21
      * @param XmlAttribute $attribute
22
+     * @return void
21 23
      */
22 24
     public function visitXmlAttribute(XmlAttribute $attribute);
23 25
 }
24 26
\ No newline at end of file
Please login to merge, or discard this patch.
src/Visitor/ElementVisitableInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -10,6 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * @param ElementVisitorInterface $visitor
13
+     * @return void
13 14
      */
14 15
     public function accept(ElementVisitorInterface $visitor);
15 16
 }
16 17
\ No newline at end of file
Please login to merge, or discard this patch.
src/Visitor/ElementVisitorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,16 +14,19 @@
 block discarded – undo
14 14
 {
15 15
     /**
16 16
      * @param Element $element
17
+     * @return void
17 18
      */
18 19
     public function visitElement(Element $element);
19 20
 
20 21
     /**
21 22
      * @param XmlElement $element
23
+     * @return void
22 24
      */
23 25
     public function visitXmlElement(XmlElement $element);
24 26
 
25 27
     /**
26 28
      * @param XmlNode $node
29
+     * @return void
27 30
      */
28 31
     public function visitXmlNode(XmlNode $node);
29 32
 }
30 33
\ No newline at end of file
Please login to merge, or discard this patch.
src/Hydrator/Dom/Translator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     /**
27 27
      * @param DOMDocument $document
28 28
      *
29
-     * @return XmlNode|null
29
+     * @return XmlElement|null
30 30
      */
31 31
     public function translateDocument(DOMDocument $document)
32 32
     {
Please login to merge, or discard this patch.
src/Hydrator/ClassMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     /**
49 49
      * @param string $name
50 50
      *
51
-     * @return Hydrate|null
51
+     * @return \self|null
52 52
      */
53 53
     public function new(string $name)
54 54
     {
Please login to merge, or discard this patch.
src/Hydrator/Hydrate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @param array $names
68
+     * @param string[] $names
69 69
      * @param       $value
70 70
      *
71 71
      * @return bool
Please login to merge, or discard this patch.