| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 21 | public function createElement(FieldInterface $field) |
|
| 36 | { |
||
| 37 | 21 | $element = $this->dom->createElement($field->getTag()); |
|
| 38 | |||
| 39 | 21 | foreach ($field->getAttributes() as $key => $value) { |
|
| 40 | 21 | $element = $this->setAttribute($field, $element, $key, $value); |
|
| 41 | 21 | } |
|
| 42 | 21 | return $element; |
|
| 43 | } |
||
| 44 | |||
| 62 | } |