Skip to content

Commit

Permalink
Monitoring\ObjectList: expect a MonitoringObject
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Gelf committed Nov 11, 2014
1 parent 0992f6c commit 4876854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/monitoring/library/Monitoring/Object/ObjectList.php
Expand Up @@ -5,7 +5,7 @@
use ArrayIterator;
use Countable;
use IteratorAggregate;
use Icinga\Module\Monitoring\Backend;
use Icinga\Module\Monitoring\Backend\MonitoringBackend;

abstract class ObjectList implements Countable, IteratorAggregate
{
Expand All @@ -21,7 +21,7 @@ abstract class ObjectList implements Countable, IteratorAggregate

protected $count;

public function __construct(Backend $backend)
public function __construct(MonitoringBackend $backend)
{
$this->backend = $backend;
}
Expand Down

0 comments on commit 4876854

Please sign in to comment.