1
0
mirror of synced 2025-01-18 22:41:43 +03:00

Merge pull request #772 from pine3ree/patch-1

DO NOT OVERRIDE CUSTOM TREE WALKERS IN getIterator()
This commit is contained in:
Guilherme Blanco 2013-08-29 07:27:35 -07:00
commit 6f025f78ec

View File

@ -178,7 +178,7 @@ class Paginator implements \Countable, \IteratorAggregate
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->setFirstResult(null)->setMaxResults(null);
$whereInQuery->setParameter(WhereInWalker::PAGINATOR_ID_ALIAS, $ids);