Completed
Push — master ( 7d00bf...8e379c )
by Dante
10s
created
src/LogTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.