Passed
Push — develop ( ef53f3...80bc53 )
by BENARD
08:34
created

TopicUserRepository::countTopicNotRead()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 12
rs 9.9666
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace ProjetNormandie\ForumBundle\Repository;
6
7
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
8
use Doctrine\Persistence\ManagerRegistry;
9
use ProjetNormandie\ForumBundle\Entity\TopicUser;
10
11
class TopicUserRepository extends ServiceEntityRepository
12
{
13
    public function __construct(ManagerRegistry $registry)
14
    {
15
        parent::__construct($registry, TopicUser::class);
16
    }
17
}
18