Completed
Push — master ( dba66b...b8eb92 )
by Fabien
03:50
created

TestCustomServiceRepoRepository   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the Doctrine Bundle
5
 *
6
 * The code was originally distributed inside the Symfony framework.
7
 *
8
 * (c) Fabien Potencier <[email protected]>
9
 * (c) Doctrine Project, Benjamin Eberlei <[email protected]>
10
 *
11
 * For the full copyright and license information, please view the LICENSE
12
 * file that was distributed with this source code.
13
 */
14
15
namespace Fixtures\Bundles\RepositoryServiceBundle\Repository;
16
17
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
18
use Fixtures\Bundles\RepositoryServiceBundle\Entity\TestCustomServiceRepoEntity;
19
use Symfony\Bridge\Doctrine\RegistryInterface;
20
21
class TestCustomServiceRepoRepository extends ServiceEntityRepository
22
{
23
    public function __construct(RegistryInterface $registry)
24
    {
25
        parent::__construct($registry, TestCustomServiceRepoEntity::class);
26
    }
27
}
28