Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function getAllWithPublishedPosts($limit = null) |
||
18 | { |
||
19 | return $this->createQueryBuilder('c') |
||
20 | ->leftJoin('c.posts', 'p') |
||
21 | ->andWhere('p.publishedAt IS NOT NULL') |
||
22 | ->andWhere('p.enabled = 1') |
||
23 | ->orderBy('c.title', 'ASC') |
||
24 | ->setMaxResults($limit) |
||
25 | ->getQuery() |
||
26 | ->getResult(); |
||
27 | } |
||
28 | } |
||
29 |