ObjectList: Fix that setFilter() violates interface Filterable
refs #9009
This commit is contained in:
parent
bd41839a19
commit
a32f505fdd
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue