icingaweb2-module-businessp.../library/Businessprocess/Web/Url.php

27 lines
505 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Businessprocess\Web;
use Icinga\Application\Icinga;
use Icinga\Web\Url as WebUrl;
/**
* Class Url
*
* The main purpose of this class is to get unit tests running on CLI
*
* @package Icinga\Module\Businessprocess\Web
*/
class Url extends WebUrl
{
protected static function getRequest()
{
$app = Icinga::app();
if ($app->isCli()) {
return new FakeRequest();
} else {
return $app->getRequest();
}
}
}