mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-11 23:13:05 -05:00
Url::getRequest(): Add missing return type
This commit is contained in:
parent
74c3440ef9
commit
c497c7360e
1 changed files with 4 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ namespace Icinga\Module\Businessprocess\Web;
|
|||
|
||||
use Icinga\Application\Icinga;
|
||||
use Icinga\Application\Web;
|
||||
use Icinga\Web\Request;
|
||||
use Icinga\Web\Url as WebUrl;
|
||||
|
||||
/**
|
||||
|
|
@ -15,6 +16,9 @@ use Icinga\Web\Url as WebUrl;
|
|||
*/
|
||||
class Url extends WebUrl
|
||||
{
|
||||
/**
|
||||
* @return FakeRequest|Request
|
||||
*/
|
||||
protected static function getRequest()
|
||||
{
|
||||
$app = Icinga::app();
|
||||
|
|
|
|||
Loading…
Reference in a new issue