Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
fixed get dependecy as an array issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorkmaz committed Jul 21, 2018
1 parent 444de38 commit 52ce1a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Foundation/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __invoke(
) : ResponseInterface {
$this->run();
$psr7Response = new Psr7Response;
$response = $psr7Response($response, $this->response);
$response = $psr7Response($response, $this->response->getResponse());
if ($next !== null) {
$response = $next($request, $response);
}
Expand Down

0 comments on commit 52ce1a7

Please sign in to comment.