Skip to content

Commit f6138d3

Browse files
committed
Fixed bug where request was not bound as an instance resulting in rebounds not being fired.
Signed-off-by: Jason Lewis <[email protected]>
1 parent 41934a4 commit f6138d3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

changes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
### v0.7.*@dev (master)
22

3+
### v0.7.3
4+
35
#### Removed
46

57
- Default throttles for rate limiting have been removed.
68

79
#### Fixed
810

911
- Fixed bug where any response object that could not be type cast as a string would throw an `UnexpectedValueException`.
12+
- Fixed bug where request was not bound as an instance resulting in rebounds not being fired.
1013

1114
### v0.7.2
1215

src/Dispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ protected function queueRequest($verb, $uri, $parameters, $content = '')
430430
$this->content = $content;
431431
}
432432

433-
$this->container['request'] = $this->requestStack[] = $this->createRequest($verb, $uri, $parameters);
433+
$this->container->instance('request', $this->requestStack[] = $this->createRequest($verb, $uri, $parameters));
434434

435435
return $this->dispatch($this->container['request']);
436436
}

0 commit comments

Comments
 (0)