Code style and comment fixes

refs #4441
This commit is contained in:
Jannis Moßhammer 2013-08-01 17:48:36 +02:00 committed by Marius Hein
parent 7675ea0514
commit a58c933a29
2 changed files with 10 additions and 1 deletions

View File

@ -645,6 +645,11 @@ class CommandPipe
);
}
/**
* Start obsessing over provided services/hosts
*
* @param array $objects An array of hosts and/or services
*/
public function startObsessing($objects)
{
foreach ($objects as $object) {
@ -658,6 +663,11 @@ class CommandPipe
}
}
/**
* Stop obsessing over provided services/hosts
*
* @param array $objects An array of hosts and/or services
*/
public function stopObsessing($objects)
{
foreach ($objects as $object) {

View File

@ -74,7 +74,6 @@ class PropertyModifier
*/
const FRESHNESS = "%s_FRESHNESS_CHECKS";
/**
* Template for enabling/disabling event handler
*/