@@ -94,20 +94,20 @@ |
||
| 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 | |