Passed
Push — master ( 428df7...389478 )
by Sebastian
08:27 queued 11s
created
src/Rendering/Name/Name.php 1 patch
Switch Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -94,20 +94,20 @@
 block discarded – undo
94 94
 */
95 95
         foreach ($node->children() as $child) {
96 96
             switch ($child->getName()) {
97
-            case "name-part":
98
-                /**
97
+             case "name-part":
98
+                 /**
99 99
                  * @var NamePart $namePart 
100 100
 */
101
-                $namePart = Factory::create($child, $this);
102
-                $this->nameParts[$namePart->getName()] = $namePart;
101
+                 $namePart = Factory::create($child, $this);
102
+                 $this->nameParts[$namePart->getName()] = $namePart;
103 103
             }
104 104
         }
105 105
 
106 106
         foreach ($node->attributes() as $attribute) {
107 107
             switch ($attribute->getName()) {
108
-            case 'form':
109
-                $this->form = (string) $attribute;
110
-                break;
108
+             case 'form':
109
+                 $this->form = (string) $attribute;
110
+                 break;
111 111
             }
112 112
         }
113 113
 
Please login to merge, or discard this patch.