blob: 37c32e0c7efadc989591fcbbf5acba407d8a5f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema;
use Doctrine\DBAL\Connection;
/**
* Creates a schema manager for the given connection.
*
* This interface is an extension point for applications that need to override schema managers.
*/
interface SchemaManagerFactory
{
public function createSchemaManager(Connection $connection): AbstractSchemaManager;
}
|