We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cb45a5 commit bdeb090Copy full SHA for bdeb090
2 files changed
CHANGELOG.md
@@ -1,10 +1,13 @@
1
# Change Log
2
3
-### 0.4.0 - 2014-12-03
+### 0.4.0 - 2014-12-04
4
5
#### Added
6
- Session handling
7
-- Easier to retrieve POST-ed form data
+- Form data handling
8
+
9
+#### Changed
10
+- Handlers don't have to return the response
11
12
### 0.3.0 - 2014-10-25
13
src/ApiFramework.php
@@ -132,7 +132,8 @@ protected function dispatch()
132
$this->dispatcher->setConfig($this->config);
133
$this->dispatcher->setContainer($this->container);
134
}
135
- $this->response= $this->dispatcher->dispatch($this->request, $this->response);
136
+ $this->dispatcher->dispatch($this->request, $this->response);
137
138
139
protected function respond()
0 commit comments