Passed
Push — master ( f36a08...6258cd )
by Sebastian
12:50
created
src/Rendering/Name/Names.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
         $this->parent = $parent;
124 124
         /**
125 125
          * @var SimpleXMLElement $child
126
-        */
126
+         */
127 127
         foreach ($node->children() as $child) {
128 128
             switch ($child->getName()) {
129 129
                 case "name":
Please login to merge, or discard this patch.
src/Rendering/Name/Name.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,13 +90,13 @@
 block discarded – undo
90 90
         $this->nameParts = [];
91 91
 
92 92
         /**
93
- * @var SimpleXMLElement $child 
93
+         * @var SimpleXMLElement $child 
94 94
 */
95 95
         foreach ($node->children() as $child) {
96 96
             switch ($child->getName()) {
97 97
             case "name-part":
98 98
                 /**
99
- * @var NamePart $namePart 
99
+                 * @var NamePart $namePart 
100 100
 */
101 101
                 $namePart = Factory::create($child, $this);
102 102
                 $this->nameParts[$namePart->getName()] = $namePart;
Please login to merge, or discard this patch.