Completed
Push — master ( ac596a...35f4cd )
by Randy
03:49
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/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/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/VisitorInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -16,26 +16,31 @@
 block discarded – undo
16 16
 {
17 17
     /**
18 18
      * @param Element $element
19
+     * @return void
19 20
      */
20 21
     public function visitElement(Element $element);
21 22
 
22 23
     /**
23 24
      * @param XmlElement $element
25
+     * @return void
24 26
      */
25 27
     public function visitXmlElement(XmlElement $element);
26 28
 
27 29
     /**
28 30
      * @param XmlNode $node
31
+     * @return void
29 32
      */
30 33
     public function visitXmlNode(XmlNode $node);
31 34
 
32 35
     /**
33 36
      * @param Attribute $attribute
37
+     * @return void
34 38
      */
35 39
     public function visitAttribute(Attribute $attribute);
36 40
 
37 41
     /**
38 42
      * @param XmlAttribute $attribute
43
+     * @return void
39 44
      */
40 45
     public function visitXmlAttribute(XmlAttribute $attribute);
41 46
 }
42 47
\ No newline at end of file
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.
tests/TranslatorTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Dgame\Soap\Test;
4 4
 
5
+use DOMDocument;
5 6
 use Dgame\Soap\Dom\Translator;
6 7
 use Dgame\Soap\XmlElement;
7 8
 use Dgame\Soap\XmlNode;
8
-use DOMDocument;
9 9
 use PHPUnit\Framework\TestCase;
10 10
 
11 11
 /**
Please login to merge, or discard this patch.
src/Hydrator/HydratableInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -12,17 +12,20 @@
 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
 
18 19
     /**
19 20
      * @param HydratableInterface $hydratable
21
+     * @return void
20 22
      */
21 23
     public function append(self $hydratable);
22 24
 
23 25
     /**
24 26
      * @param string $name
25 27
      * @param string $value
28
+     * @return void
26 29
      */
27 30
     public function assignValue(string $name, string $value);
28 31
 
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 $visitor
13
+     * @return void
13 14
      */
14 15
     public function accept(VisitorInterface $visitor);
15 16
 }
16 17
\ No newline at end of file
Please login to merge, or discard this patch.