DO NOT OVERRIDE CUSTOM TREE WALKERS IN getIterator()
This commit is contained in:
parent
fc7719d5fa
commit
f98dfc4758
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class Paginator implements \Countable, \IteratorAggregate
|
||||||
return new \ArrayIterator(array());
|
return new \ArrayIterator(array());
|
||||||
}
|
}
|
||||||
|
|
||||||
$whereInQuery->setHint(Query::HINT_CUSTOM_TREE_WALKERS, array('Doctrine\ORM\Tools\Pagination\WhereInWalker'));
|
$this->appendTreeWalker($whereInQuery, 'Doctrine\ORM\Tools\Pagination\WhereInWalker');
|
||||||
$whereInQuery->setHint(WhereInWalker::HINT_PAGINATOR_ID_COUNT, count($ids));
|
$whereInQuery->setHint(WhereInWalker::HINT_PAGINATOR_ID_COUNT, count($ids));
|
||||||
$whereInQuery->setFirstResult(null)->setMaxResults(null);
|
$whereInQuery->setFirstResult(null)->setMaxResults(null);
|
||||||
$whereInQuery->setParameter(WhereInWalker::PAGINATOR_ID_ALIAS, $ids);
|
$whereInQuery->setParameter(WhereInWalker::PAGINATOR_ID_ALIAS, $ids);
|
||||||
|
|
Loading…
Add table
Reference in a new issue