summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaScheduledDowntimeRanges.php
blob: ac8483e71a9cadf94f389b2ca26c5458d5445a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Icinga\Module\Director\Objects;

use Countable;
use Iterator;
use Icinga\Module\Director\IcingaConfig\IcingaConfigRenderer;

class IcingaScheduledDowntimeRanges extends IcingaRanges implements Iterator, Countable, IcingaConfigRenderer
{
    protected $rangeClass = IcingaScheduledDowntimeRange::class;
    protected $objectIdColumn = 'scheduled_downtime_id';

    public function toLegacyConfigString()
    {
        return '';
    }
}