Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
loiclau committed Nov 3, 2017
1 parent ff10347 commit 3cfe299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/class/centreon-clapi/centreonRtDowntime.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ public function __construct(\Pimple\Container $dependencyInjector)
parent::__construct($dependencyInjector);
$this->object = new \Centreon_Object_RtDowntime($dependencyInjector);
$this->hgObject = new \CentreonHostgroups($this->db);
$this->hostObject = new \CentreonClapi\CentreonHost($this->db);
$this->serviceObject = new \CentreonClapi\CentreonService($this->db);
$this->hostObject = new \CentreonClapi\CentreonHost($dependencyInjector);
$this->serviceObject = new \CentreonClapi\CentreonService($dependencyInjector);
$this->sgObject = new \CentreonServiceGroups($this->db);
$this->instanceObject = new \CentreonInstance($this->db);
$this->GMTObject = new \CentreonGMT();
Expand Down

0 comments on commit 3cfe299

Please sign in to comment.