Add PHPDoc to the Dispatcher

refs #5786
This commit is contained in:
Eric Lippmann 2015-08-17 13:10:01 +02:00
parent f972a034e7
commit e8c0e97bb3
1 changed files with 6 additions and 0 deletions

View File

@ -9,8 +9,14 @@ use Zend_Controller_Dispatcher_Standard;
use Zend_Controller_Request_Abstract;
use Zend_Controller_Response_Abstract;
/**
* Dispatcher supporting Zend-style and namespaced controllers
*/
class Dispatcher extends Zend_Controller_Dispatcher_Standard
{
/**
* {@inheritdoc}
*/
public function dispatch(Zend_Controller_Request_Abstract $request, Zend_Controller_Response_Abstract $response)
{
$this->setResponse($response);