EntityManagerContainer
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 1
b 0
f 0
dl 0
loc 6
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Arp\LaminasDoctrine\Service\EntityManager;
6
7
use Arp\LaminasDoctrine\Service\ContainerInterface;
8
use Doctrine\ORM\EntityManagerInterface;
9
use Laminas\ServiceManager\AbstractPluginManager;
10
11
/**
12
 * @extends AbstractPluginManager<EntityManagerInterface>
13
 * @implements ContainerInterface<EntityManagerInterface>
14
 */
15
final class EntityManagerContainer extends AbstractPluginManager implements ContainerInterface
16
{
17
    /**
18
     * @var class-string<EntityManagerInterface>
0 ignored issues
show
Documentation Bug introduced by
The doc comment class-string<EntityManagerInterface> at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string<EntityManagerInterface>.
Loading history...
19
     */
20
    protected $instanceOf = EntityManagerInterface::class;
21
}
22