Monitoring\Object: small fix for strange private's

This commit is contained in:
Thomas Gelf 2014-05-20 22:22:48 +00:00
parent a7b8e0023d
commit 8b28bdc82a
3 changed files with 1 additions and 2 deletions

View File

@ -33,6 +33,7 @@ abstract class AbstractObject
public $customvars = array();
public $events = array();
protected $view;
private $properties = array();
private $request = null;

View File

@ -9,7 +9,6 @@ class Host extends AbstractObject
{
public $type = 'host';
public $prefix = 'host_';
private $view = null;
protected function applyObjectFilter(Query $query)
{

View File

@ -9,7 +9,6 @@ class Service extends AbstractObject
{
public $type = 'service';
public $prefix = 'service_';
private $view = null;
protected function applyObjectFilter(Query $query)
{