blob: 3ad6de5f43b0f9b8e8a1d64957d534b1811890d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Icinga\Module\Eventdb\Test;
use Icinga\Data\ConfigObject;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
class PseudoMonitoringBackend extends MonitoringBackend
{
public static function dummy()
{
return new static('dummy', new ConfigObject());
}
}
|