2021-02-04 09:02:19 -05:00
|
|
|
<?php
|
|
|
|
|
|
2026-02-23 17:12:09 -05:00
|
|
|
// SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
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';
|
|
|
|
|
}
|
|
|
|
|
}
|