@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | protected function requestBodyCleanup(RequestInterface $request) : string |
| 78 | 78 | { |
| 79 | 79 | $body = $request->getBody(); |
| 80 | - if (empty((string)$body)) { |
|
| 80 | + if (empty((string) $body)) { |
|
| 81 | 81 | return '(empty)'; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | protected function responseBodyCleanup(ResponseInterface $response) : string |
| 144 | 144 | { |
| 145 | 145 | $body = $response->getBody(); |
| 146 | - if (empty((string)$body)) { |
|
| 146 | + if (empty((string) $body)) { |
|
| 147 | 147 | return '(empty)'; |
| 148 | 148 | } |
| 149 | 149 | |