blob: 3c036d461e9d6ea0ad2b6d68be6ccf27f6747783 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?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();
}
}
}
|