Primo rilascio
This commit is contained in:
15
backend/vendor/doctrine/dbal/src/Tools/Console/ConnectionProvider.php
vendored
Normal file
15
backend/vendor/doctrine/dbal/src/Tools/Console/ConnectionProvider.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user