`ObjectList`: Fix return type for `getScheduledDowntimes()`

This commit is contained in:
raviks789 2023-08-14 14:53:32 +02:00
parent 30c26f16fe
commit 8b6f9fbfed
1 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ use Countable;
use Icinga\Data\Filter\Filter;
use Icinga\Data\Filter\FilterChain;
use Icinga\Data\Filterable;
use Icinga\Module\Monitoring\DataView\Downtime;
use IteratorAggregate;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
use Traversable;
@ -155,7 +156,7 @@ abstract class ObjectList implements Countable, IteratorAggregate, Filterable
/**
* Get the scheduled downtimes
*
* @return type
* @return Downtime
*/
public function getScheduledDowntimes()
{