| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | protected function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) { |
||
| 26 | foreach (parent::resolveValues($value, $args, $context, $info) as $item) { |
||
| 27 | $document = new \DOMDocument(); |
||
| 28 | libxml_use_internal_errors(TRUE); |
||
| 29 | $document->loadXML($item); |
||
| 30 | yield $document->documentElement; |
||
| 31 | } |
||
| 32 | } |
||
| 33 | |||
| 35 |