Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 8 |
Ratio | 100 % |
Tests | 3 |
CRAP Score | 2.0625 |
Changes | 0 |
1 | <?php |
||
39 | 2 | View Code Duplication | public function getErrorMessage() |
40 | { |
||
41 | 2 | if ($this->isSuccess()) { |
|
42 | throw new \BadMethodCallException('Response is correct, no error message available'); |
||
43 | } |
||
44 | |||
45 | 2 | return (string)$this->xml->error[0]['msg']; |
|
46 | } |
||
47 | |||
58 |