Url::getRequest(): Add missing return type

This commit is contained in:
Sukhwinder Dhillon 2023-08-14 12:46:49 +02:00
parent 74c3440ef9
commit c497c7360e

View file

@ -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();