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
![]() |
|||
19 | */ |
||
20 | protected $instanceOf = EntityManagerInterface::class; |
||
21 | } |
||
22 |