Skip to content

Commit bdeb090

Browse files
committed
Handlers don't have to return the response
1 parent 1cb45a5 commit bdeb090

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Change Log
22

3-
### 0.4.0 - 2014-12-03
3+
### 0.4.0 - 2014-12-04
44

55
#### Added
66
- Session handling
7-
- Easier to retrieve POST-ed form data
7+
- Form data handling
8+
9+
#### Changed
10+
- Handlers don't have to return the response
811

912
### 0.3.0 - 2014-10-25
1013

src/ApiFramework.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ protected function dispatch()
132132
$this->dispatcher->setConfig($this->config);
133133
$this->dispatcher->setContainer($this->container);
134134
}
135-
$this->response= $this->dispatcher->dispatch($this->request, $this->response);
135+
136+
$this->dispatcher->dispatch($this->request, $this->response);
136137
}
137138

138139
protected function respond()

0 commit comments

Comments
 (0)