Commit 977ae693029ccce1421b0363624a22ad35cd5f86
1 parent
3135fde6
Exists in
2.9
and in
7 other branches
Corrige problema invocação duplicada de método
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
ieducar/lib/Portabilis/Report/ReportsRenderServerFactory.php
... | ... | @@ -57,7 +57,7 @@ class Portabilis_Report_ReportsRenderServerFactory extends Portabilis_Report_Rep |
57 | 57 | $log = json_encode([ |
58 | 58 | 'url' => $this->url, |
59 | 59 | 'payload' => $payload, |
60 | - 'response' => $response->getBody()->getContents(), | |
60 | + 'response' => $response, | |
61 | 61 | ]); |
62 | 62 | |
63 | 63 | Log::error($log); | ... | ... |