| 1 | <?php |
||
| 10 | trait ResponseParser |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param \Psr\Http\Message\ResponseInterface $response |
||
| 14 | * |
||
| 15 | * @return boolean |
||
| 16 | */ |
||
| 17 | public function isResponseJson(ResponseInterface $response) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param \Psr\Http\Message\ResponseInterface $response |
||
| 24 | * |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | public function getBody(ResponseInterface $response) |
||
| 31 | } |
||
| 32 |