monitoring: Default to Filter::matchAll() in the ObjectList

refs #9574
This commit is contained in:
Eric Lippmann 2015-08-04 15:28:18 +02:00
parent c3fe14a205
commit 7403c67893
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ abstract class ObjectList implements Countable, IteratorAggregate, Filterable
public function getFilter()
{
if ($this->filter === null) {
$this->filter = Filter::matchAny();
$this->filter = Filter::matchAll();
}
return $this->filter;