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 48ae271 commit afc1bddCopy full SHA for afc1bdd
changes.md
@@ -1,4 +1,6 @@
1
-### v0.7.*@dev (master)
+### v0.8.*@dev (master)
2
+
3
+### v0.8.0
4
5
#### Added
6
@@ -16,6 +18,7 @@
16
18
#### Fixed
17
19
20
- Fixed bug where headers were not completely copied when creating a new response from an existing response.
21
+- Fixed bug where request was not correctly rebound to the container.
22
23
### v0.7.3
24
src/Dispatcher.php
@@ -600,7 +600,7 @@ protected function replaceRequestInstance()
600
{
601
array_pop($this->requestStack);
602
603
- $this->container['request'] = end($this->requestStack);
+ $this->container->instance('request', end($this->requestStack));
604
605
$this->router->setCurrentRequest($this->container['request']);
606
0 commit comments