Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function validate($message) |
||
8 | { |
||
9 | libxml_use_internal_errors(true); |
||
10 | $response = simplexml_load_string($message, 'SimpleXMLElement', LIBXML_NOCDATA); |
||
11 | |||
12 | if ($response === false) { |
||
13 | throw new \Exception('Não foi possível identificar o XML de retorno.'); |
||
14 | } |
||
15 | |||
16 | return $response; |
||
17 | } |
||
24 |