We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfed63e commit 4b7ce0fCopy full SHA for 4b7ce0f
src/Entity/TaskRepository.php
@@ -10,7 +10,7 @@ public function findScheduled()
10
{
11
$query = $this->createQueryBuilder('task')
12
->where('task.completed = :completed')
13
- ->andWhere('task.executionDate < :date')
+ ->andWhere('task.executionDate <= :date')
14
->setParameter('completed', false)
15
->setParameter('date', new \DateTime())
16
->getQuery();
0 commit comments