| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 7 | public function parseResponse($responseLine, $responseData) |
|
| 30 | { |
||
| 31 | 7 | if ($responseLine == Response::RESPONSE_NOT_FOUND) { |
|
| 32 | 1 | throw new ServerException(sprintf( |
|
| 33 | 1 | 'Server reported %s', |
|
| 34 | 1 | $responseLine |
|
| 35 | )); |
||
| 36 | } |
||
| 37 | 6 | unset($responseData['@attributes']); |
|
| 38 | 6 | return $responseData; |
|
| 39 | } |
||
| 41 |