From e8c0e97bb30bfe4e3cb4ff2401fb3744cde3a1e8 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 17 Aug 2015 13:10:01 +0200 Subject: [PATCH] Add PHPDoc to the Dispatcher refs #5786 --- library/Icinga/Web/Controller/Dispatcher.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/library/Icinga/Web/Controller/Dispatcher.php b/library/Icinga/Web/Controller/Dispatcher.php index 54384baf9..923f3072a 100644 --- a/library/Icinga/Web/Controller/Dispatcher.php +++ b/library/Icinga/Web/Controller/Dispatcher.php @@ -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);