We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa12a44 commit a8e94ecCopy full SHA for a8e94ec
src/Models/RequestLogBaseModel.php
@@ -66,7 +66,8 @@ public static function makeFromGuzzle(Request $request) : static
66
return $instance;
67
}
68
69
- public function updateFromResponse(ResponseInterface $response): self {
+ public function updateFromResponse(ResponseInterface $response): self
70
+ {
71
$this->response = json_decode($response->getBody()->getContents(), true);
72
$this->response_code = $response->getStatusCode();
73
$this->response_headers = $response->getHeaders();
0 commit comments