blob: 866589b4e5f8d1c44a22431844d1a691d025fe1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Tools\Console;
use Doctrine\ORM\EntityManagerInterface;
interface EntityManagerProvider
{
public function getDefaultManager(): EntityManagerInterface;
public function getManager(string $name): EntityManagerInterface;
}
|