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
Hello Daniel!
I've updated plugin to the latest version and noticed some new feature: parameters autocompletion. Awesome, but it works buggy in some cases:
$subscribers = $subscribersRepository->createQueryBuilder('s') ->andWhere('s.subscriptionStatus = :status') ->andWhere('s.lastSent < :last_sent') // autosuggest ok ->setParameter('last_sent', $lastSent, 'date') ->getQuery() ->getResult(); $subscribersRepository->createQueryBuilder('s') ->update() ->set('s.lastSent', ':now') ->setParameter('now', $lastSent) // autosuggest propose me use `last_sent` parameter
The text was updated successfully, but these errors were encountered:
really tricky, but iam rewriting the method collector to also support nested methods. so stay tuned :)
Sorry, something went wrong.
reinvent querybuilder method collector to allow chaining methods and …
455d518
…fix other possible issues #274 #278
No branches or pull requests
Hello Daniel!
I've updated plugin to the latest version and noticed some new feature: parameters autocompletion. Awesome, but it works buggy in some cases:
The text was updated successfully, but these errors were encountered: