| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | protected function getEmptyBody() |
||
| 36 | { |
||
| 37 | $body = $this->response->getBody(); |
||
| 38 | if (!$body->isWritable()) { |
||
| 39 | throw new \RuntimeException('response body is not writeble'); |
||
| 40 | } |
||
| 41 | if ($body->getSize() !== 0) { |
||
| 42 | throw new \RuntimeException('response body is not empty'); |
||
| 43 | } |
||
| 44 | |||
| 45 | return $body; |
||
| 46 | } |
||
| 48 |