Monitoring\Object: small fix for strange private's
This commit is contained in:
parent
a7b8e0023d
commit
8b28bdc82a
|
@ -33,6 +33,7 @@ abstract class AbstractObject
|
|||
public $customvars = array();
|
||||
public $events = array();
|
||||
|
||||
protected $view;
|
||||
private $properties = array();
|
||||
private $request = null;
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@ class Host extends AbstractObject
|
|||
{
|
||||
public $type = 'host';
|
||||
public $prefix = 'host_';
|
||||
private $view = null;
|
||||
|
||||
protected function applyObjectFilter(Query $query)
|
||||
{
|
||||
|
|
|
@ -9,7 +9,6 @@ class Service extends AbstractObject
|
|||
{
|
||||
public $type = 'service';
|
||||
public $prefix = 'service_';
|
||||
private $view = null;
|
||||
|
||||
protected function applyObjectFilter(Query $query)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue