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 4165859 commit ecbb60fCopy full SHA for ecbb60f
src/Application/Application.php
@@ -137,11 +137,10 @@ public function processRequest(Request $request): void
137
if ($response instanceof Responses\ForwardResponse) {
138
$request = $response->getRequest();
139
goto process;
140
-
141
- } elseif ($response) {
142
- $this->onResponse($this, $response);
143
- $response->send($this->httpRequest, $this->httpResponse);
144
}
+
+ $this->onResponse($this, $response);
+ $response->send($this->httpRequest, $this->httpResponse);
145
146
147
0 commit comments