We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the following code the TranslationWalker will be replaced by KnpPaginator and won't be applied.
TranslationWalker
$page = 1; $limit = 1000; $query = $repo->createQueryBuilder('a') ->getQuery() ->setHint( Query::HINT_CUSTOM_OUTPUT_WALKER, '\Gedmo\Translatable\Query\TreeWalker\TranslationWalker' ) ; $paginator = $this->container->get('knp_paginator'); $pagination = $paginator->paginate($query, $page, $limit, ['distinct' => false]);
Extra check here will solve the problem.
The text was updated successfully, but these errors were encountered:
Fix OutputWalker conflict KnpLabs#181
7a7b42f
d85a81c
No branches or pull requests
In the following code the
TranslationWalker
will be replaced by KnpPaginator and won't be applied.Extra check here will solve the problem.
The text was updated successfully, but these errors were encountered: