Completed
Push — master ( 7a0b0e...bff8fc )
by Randy
02:29
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/Element.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Dgame\Soap;
4 4
 
5
-use Dgame\Soap\Hydrator\VisitorInterface;
6
-use Dgame\Soap\Hydrator\VisitableInterface;
7 5
 use Dgame\Soap\Attribute\Attribute;
6
+use Dgame\Soap\Hydrator\VisitableInterface;
7
+use Dgame\Soap\Hydrator\VisitorInterface;
8 8
 
9 9
 /**
10 10
  * Class Element
Please login to merge, or discard this patch.
src/Hydrator/Attribute/AttributeHydrator.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Dgame\Soap\Hydrator\Attribute;
4 4
 
5
+use DOMDocument;
6
+use DOMElement;
5 7
 use Dgame\Soap\Attribute\Attribute;
6 8
 use Dgame\Soap\Attribute\XmlAttribute;
7 9
 use Dgame\Soap\Element;
8
-use DOMDocument;
9
-use DOMElement;
10 10
 
11 11
 /**
12 12
  * Class AttributeHydrator
Please login to merge, or discard this patch.
src/Hydrator/Attribute/AttributeHydratorInterface.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/Hydrator/Dom/Assembler.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace Dgame\Soap\Hydrator\Dom;
4 4
 
5
+use DOMDocument;
6
+use DOMElement;
7
+use DOMNode;
5 8
 use Dgame\Soap\Attribute\Attribute;
6 9
 use Dgame\Soap\Attribute\XmlAttribute;
7 10
 use Dgame\Soap\Element;
8 11
 use Dgame\Soap\Hydrator\VisitorInterface;
9 12
 use Dgame\Soap\XmlElement;
10 13
 use Dgame\Soap\XmlNode;
11
-use DOMDocument;
12
-use DOMElement;
13
-use DOMNode;
14 14
 
15 15
 /**
16 16
  * Class Assembler
Please login to merge, or discard this patch.
src/Hydrator/Dom/Hydrator.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Dgame\Soap\Hydrator\Dom;
4 4
 
5
+use DOMDocument;
6
+use DOMNode;
5 7
 use Dgame\Soap\Dom\Translator;
6 8
 use Dgame\Soap\Element;
7 9
 use Dgame\Soap\Hydrator\ClassMapper;
8 10
 use Dgame\Soap\Hydrator\HydrateProcedure;
9
-use DOMDocument;
10
-use DOMNode;
11 11
 
12 12
 /**
13 13
  * Class Hydrator
Please login to merge, or discard this patch.
src/Hydrator/HydratableInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -12,6 +12,7 @@  discard block
 block discarded – undo
12 12
 {
13 13
     /**
14 14
      * @param AssignableInterface $assignable
15
+     * @return void
15 16
      */
16 17
     public function assign(AssignableInterface $assignable);
17 18
 
@@ -25,6 +26,7 @@  discard block
 block discarded – undo
25 26
     /**
26 27
      * @param string $name
27 28
      * @param string $value
29
+     * @return void
28 30
      */
29 31
     public function assignValue(string $name, string $value);
30 32
 
Please login to merge, or discard this patch.
src/Hydrator/Method.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param string $postfix
38
-     * @param object $object
38
+     * @param Hydratable $object
39 39
      *
40 40
      * @return Method
41 41
      */
Please login to merge, or discard this patch.
src/Hydrator/VisitableInterface.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 VisitorInterface $hydrator
13
+     * @return void
13 14
      */
14 15
     public function accept(VisitorInterface $hydrator);
15 16
 }
16 17
\ No newline at end of file
Please login to merge, or discard this patch.