Issues (82)

Service/EntityManager/EntityManagerContainer.php (1 issue)

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