lib: Fix type hint of Controller::getRequest()

This commit is contained in:
Eric Lippmann 2015-08-20 16:00:24 +02:00
parent 1130e453f6
commit 62f0281a62
2 changed files with 5 additions and 5 deletions

View File

@ -28,6 +28,11 @@ use Zend_Controller_Response_Abstract as Response;
* Base class for all core action controllers
*
* All Icinga Web core controllers should extend this class
*
* @method \Icinga\Web\Request getRequest() {
* {@inheritdoc}
* @return \Icinga\Web\Request
* }
*/
class ActionController extends Zend_Controller_Action
{

View File

@ -9,11 +9,6 @@ use Icinga\Module\Monitoring\Object\HostList;
/**
* Monitoring API
*
* @method \Icinga\Web\Request getRequest() {
* {@inheritdoc}
* @return \Icinga\Web\Request
* }
*/
class Monitoring_ActionsController extends Controller
{