Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | public function getCount(): int |
||
25 | { |
||
26 | $connection = $this->getEntityManager()->getConnection(); |
||
27 | |||
28 | $query = $connection->createQueryBuilder() |
||
29 | ->select('COUNT(*)') |
||
30 | ->from($connection->quoteIdentifier($this->getClassMetadata()->getTableName())); |
||
31 | |||
32 | return (int) $query->fetchOne(); |
||
33 | } |
||
35 |