EntityRepositoryFactory::__invoke()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 15
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 2
eloc 6
c 1
b 0
f 1
nc 2
nop 3
dl 0
loc 15
ccs 7
cts 7
cp 1
crap 2
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Antidot\Persistence\Doctrine\Container;
6
7
use Antidot\Persistence\Doctrine\Container\Config\ConfigProvider;
8
use Doctrine\ORM\EntityManagerInterface;
9
use Doctrine\Persistence\ObjectRepository;
10
use Psr\Container\ContainerInterface;
11
use RuntimeException;
12
13
class EntityRepositoryFactory
14
{
15 3
    public function __invoke(
16
        ContainerInterface $container,
17
        string $model,
18
        string $connectionName = ConfigProvider::DEFAULT_CONNECTION
19
    ): ObjectRepository {
20 3
        $entityManager = $container->get(sprintf(ConfigProvider::CONNECTION_ALIAS_PATTERN, $connectionName));
21
22 3
        if (false === $entityManager instanceof EntityManagerInterface) {
23 1
            throw new RuntimeException(sprintf(
24 1
                ConfigProvider::CONTAINER_EXCEPTION_MESSAGE_PATTERN,
25 1
                EntityManagerInterface::class
26
            ));
27
        }
28
29 2
        return $entityManager->getRepository($model);
30
    }
31
}
32