Completed
Push — master ( 126b63...733cbc )
by Randy
04:39
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/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/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.
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 $class
50 50
      *
51
-     * @return Hydrate|null
51
+     * @return \self|null
52 52
      */
53 53
     public function new(string $class)
54 54
     {
Please login to merge, or discard this patch.
src/Hydrator/Dom/Translator.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Dgame\Soap\Dom;
4 4
 
5
-use Dgame\Soap\Attribute\XmlAttribute;
6
-use Dgame\Soap\XmlElement;
7
-use Dgame\Soap\XmlNode;
8 5
 use DOMAttr;
9 6
 use DOMDocument;
10 7
 use DOMNode;
8
+use Dgame\Soap\Attribute\XmlAttribute;
9
+use Dgame\Soap\XmlElement;
10
+use Dgame\Soap\XmlNode;
11 11
 
12 12
 /**
13 13
  * Class DomTranslator
Please login to merge, or discard this patch.
src/Component/Request.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Dgame\Soap\Component;
4 4
 
5 5
 use Dgame\Soap\XmlElement;
6
-use Exception;
7 6
 
8 7
 /**
9 8
  * Class Request
Please login to merge, or discard this patch.