| Current Path : /opt/nginxhttpd_/vendor/doctrine/orm/src/Tools/Console/ |
| Current File : //opt/nginxhttpd_/vendor/doctrine/orm/src/Tools/Console/EntityManagerProvider.php |
<?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;
}