mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
26 lines
553 B
PHP
26 lines
553 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Model\Repositories;
|
|
|
|
use Alchemy\Phrasea\Model\Entities\Task;
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
/**
|
|
* TaskRepository
|
|
*
|
|
* This class was generated by the Doctrine ORM. Add your own custom
|
|
* repository methods below.
|
|
*/
|
|
class TaskRepository extends EntityRepository
|
|
{
|
|
public function findActiveTasks()
|
|
{
|
|
$qb = $this->createQueryBuilder('t');
|
|
$qb->where('t.status = :status');
|
|
|
|
$qb->setParameter(':status', Task::STATUS_STARTED);
|
|
|
|
return $qb->getQuery()->getResult();
|
|
}
|
|
}
|