diff options
Diffstat (limited to 'vendor/doctrine/dbal/src/Schema/SchemaManagerFactory.php')
-rw-r--r-- | vendor/doctrine/dbal/src/Schema/SchemaManagerFactory.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/doctrine/dbal/src/Schema/SchemaManagerFactory.php b/vendor/doctrine/dbal/src/Schema/SchemaManagerFactory.php new file mode 100644 index 0000000..37c32e0 --- /dev/null +++ b/vendor/doctrine/dbal/src/Schema/SchemaManagerFactory.php | |||
@@ -0,0 +1,17 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\DBAL\Schema; | ||
6 | |||
7 | use Doctrine\DBAL\Connection; | ||
8 | |||
9 | /** | ||
10 | * Creates a schema manager for the given connection. | ||
11 | * | ||
12 | * This interface is an extension point for applications that need to override schema managers. | ||
13 | */ | ||
14 | interface SchemaManagerFactory | ||
15 | { | ||
16 | public function createSchemaManager(Connection $connection): AbstractSchemaManager; | ||
17 | } | ||