Completed
Push — master ( c5110b...a167e6 )
by Valentyn
13:46
created

ImdbCountryRepository::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Countries\Repository;
6
7
use App\Countries\Entity\ImdbCountry;
8
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
9
use Symfony\Bridge\Doctrine\RegistryInterface;
10
11
/**
12
 * @method ImdbCountry|null find($id, $lockMode = null, $lockVersion = null)
13
 * @method ImdbCountry|null findOneBy(array $criteria, array $orderBy = null)
14
 * @method ImdbCountry[]    findAll()
15
 * @method ImdbCountry[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
16
 */
17
class ImdbCountryRepository extends ServiceEntityRepository
18
{
19
    public function __construct(RegistryInterface $registry)
20
    {
21
        parent::__construct($registry, ImdbCountry::class);
22
    }
23
}
24