Files
NidoAi/backend/vendor/doctrine/dbal/src/Tools/Console/ConnectionProvider.php
2026-03-07 00:15:59 +01:00

16 lines
350 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tools\Console;
use Doctrine\DBAL\Connection;
interface ConnectionProvider
{
public function getDefaultConnection(): Connection;
/** @throws ConnectionNotFound in case a connection with the given name does not exist. */
public function getConnection(string $name): Connection;
}