| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 8 |
| Ratio | 100 % |
| Tests | 3 |
| CRAP Score | 2.0625 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 2 | View Code Duplication | public function getErrorCode() |
| 28 | { |
||
| 29 | 2 | if ($this->isSuccess()) { |
|
| 30 | throw new \BadMethodCallException('Response is correct, no error code available'); |
||
| 31 | } |
||
| 32 | |||
| 33 | 2 | return (int)$this->xml->error[0]['code']; |
|
| 34 | } |
||
| 35 | |||
| 58 |