blob: 4c4a9b3f6ded4bdc4a5c2c2e55623a253b5855f9 (
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 ObjectsCommand
{
use CommandAuthor;
}
|