Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | 34 | public function getMessageByCode($code) |
|
25 | { |
||
26 | 34 | $doc = new \DOMDocument(); |
|
27 | 34 | $doc->load($this->xmlErrorFile); |
|
28 | 34 | $xpath = new \DOMXPath($doc); |
|
29 | 34 | $nodes = $xpath->query("/errors/error[@code='$code']"); |
|
30 | |||
31 | 34 | if ($nodes->length !== 1) { |
|
32 | 4 | return ''; |
|
33 | } |
||
34 | |||
35 | 30 | return $nodes[0]->nodeValue; |
|
36 | } |
||
37 | |||
53 | } |