lib: Fix type hint of Controller::getRequest()
This commit is contained in:
parent
1130e453f6
commit
62f0281a62
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue