blob: 49a22a307d461dc14b709483469099dc4f7950cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Command\Object;
/**
* Remove a problem acknowledgement from a host or service
*/
class RemoveAcknowledgementCommand extends ObjectCommand
{
use CommandAuthor;
}
|