2021-02-04 09:02:19 -05:00
|
|
|
<?php
|
|
|
|
|
|
2025-11-21 07:31:24 -05:00
|
|
|
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2+ */
|
2021-02-04 09:02:19 -05:00
|
|
|
|
|
|
|
|
namespace Icinga\Module\Icingadb\Command\Object;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Schedule a service downtime
|
2024-11-12 08:13:55 -05:00
|
|
|
*
|
|
|
|
|
* @deprecated Use {@see ScheduleDowntimeCommand} instead
|
2021-02-04 09:02:19 -05:00
|
|
|
*/
|
2024-11-12 08:13:55 -05:00
|
|
|
class ScheduleServiceDowntimeCommand extends ScheduleDowntimeCommand
|
2021-02-04 09:02:19 -05:00
|
|
|
{
|
2021-09-22 04:21:15 -04:00
|
|
|
public function getName(): string
|
2021-02-04 09:02:19 -05:00
|
|
|
{
|
|
|
|
|
return 'ScheduleDowntime';
|
|
|
|
|
}
|
|
|
|
|
}
|