Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | protected function getAllIdsQuery(): string |
||
34 | { |
||
35 | $connection = $this->getEntityManager()->getConnection(); |
||
36 | $qb = $connection->createQueryBuilder() |
||
37 | ->select('id') |
||
38 | ->from($connection->quoteIdentifier($this->getClassMetadata()->getTableName())); |
||
39 | |||
40 | return $qb->getSQL(); |
||
41 | } |
||
61 |