Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
36 | public function getIds(): array |
||
37 | { |
||
38 | $query = $this->createQueryBuilder('news') |
||
39 | ->select('news.id') |
||
40 | ->where('news.date < CURRENT_TIMESTAMP()') |
||
41 | ->andWhere('news.isActive = true') |
||
42 | ->orderBy('news.id') |
||
43 | ->getQuery(); |
||
44 | |||
45 | $result = $query->getArrayResult(); |
||
46 | |||
47 | return $result; |
||
48 | } |
||
50 |