| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function findExpiredMedias() |
||
| 12 | { |
||
| 13 | $qb = new QueryBuilder($this->getEntityManager()); |
||
| 14 | |||
| 15 | return $qb |
||
| 16 | ->select('m') |
||
| 17 | ->from('AlpixelMediaBundle:Media', 'm') |
||
| 18 | ->where('m.lifetime is not null') |
||
| 19 | ->andWhere('m.lifetime < :now') |
||
| 20 | ->setParameter('now', new \DateTime()) |
||
| 21 | ->getQuery() |
||
| 22 | ->getResult(); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |