ObjectList: Fix that setFilter() violates interface Filterable

refs #9009
This commit is contained in:
Johannes Meyer 2015-06-15 16:08:04 +02:00
parent bd41839a19
commit a32f505fdd
1 changed files with 2 additions and 2 deletions

View File

@ -67,11 +67,11 @@ abstract class ObjectList implements Countable, IteratorAggregate, Filterable
} }
/** /**
* @param $filter * @param Filter $filter
* *
* @return $this * @return $this
*/ */
public function setFilter($filter) public function setFilter(Filter $filter)
{ {
$this->filter = $filter; $this->filter = $filter;
return $this; return $this;