Skip to content

Commit

Permalink
Handlers don't have to return the response
Browse files Browse the repository at this point in the history
  • Loading branch information
kocsismate committed Dec 4, 2014
1 parent 1cb45a5 commit bdeb090
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Change Log

### 0.4.0 - 2014-12-03
### 0.4.0 - 2014-12-04

#### Added
- Session handling
- Easier to retrieve POST-ed form data
- Form data handling

#### Changed
- Handlers don't have to return the response

### 0.3.0 - 2014-10-25

Expand Down
3 changes: 2 additions & 1 deletion src/ApiFramework.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ protected function dispatch()
$this->dispatcher->setConfig($this->config);
$this->dispatcher->setContainer($this->container);
}
$this->response= $this->dispatcher->dispatch($this->request, $this->response);

$this->dispatcher->dispatch($this->request, $this->response);
}

protected function respond()
Expand Down

0 comments on commit bdeb090

Please sign in to comment.