[Resource] Use output walkers in DoctrineORMAdapter

This commit is contained in:
Kamil Kokot 2015-12-15 15:39:07 +01:00
parent e431b1669a
commit c692c59bc6

View file

@ -139,7 +139,7 @@ class EntityRepository extends BaseEntityRepository implements RepositoryInterfa
*/
public function getPaginator(QueryBuilder $queryBuilder)
{
return new Pagerfanta(new DoctrineORMAdapter($queryBuilder, true, false));
return new Pagerfanta(new DoctrineORMAdapter($queryBuilder, true, true));
}
/**