You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
381 B
17 lines
381 B
<?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; |
|
}
|
|
|