| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 13 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 9 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 23 | 2 | public function deserializeFaultDetail(XmlDeserializationVisitor $visitor, \SimpleXMLElement $data, array $type, DeserializationContext $context)  | 
            |
| 24 |     { | 
            ||
| 25 | 2 | $domElement = dom_import_simplexml($data);  | 
            |
| 26 | |||
| 27 | 2 |         $document = new \DOMDocument('1.0', 'utf-8'); | 
            |
| 28 | |||
| 29 | 2 | $xml = '';  | 
            |
| 30 | 2 |         foreach ($domElement->childNodes as $child) { | 
            |
| 31 | 2 | $newEl = $document->importNode($child, true);  | 
            |
| 32 | 2 | $xml .= $document->saveXML($newEl);  | 
            |
| 33 | 2 | }  | 
            |
| 34 | 2 | return $xml;  | 
            |
| 35 | }  | 
            ||
| 36 | }  | 
            ||
| 40 | 
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.