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 19d48ef commit 04784c6Copy full SHA for 04784c6
Response/TraceableResponse.php
@@ -57,7 +57,9 @@ public function __wakeup()
57
public function __destruct()
58
{
59
try {
60
- $this->response->__destruct();
+ if (method_exists($this->response, '__destruct')) {
61
+ $this->response->__destruct();
62
+ }
63
} finally {
64
if ($this->event && $this->event->isStarted()) {
65
$this->event->stop();
0 commit comments