@@ -19,10 +19,10 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL\Schema; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Events; |
|
| 22 | +use Doctrine\DBAL\DBALException; |
|
| 23 | 23 | use Doctrine\DBAL\Event\SchemaColumnDefinitionEventArgs; |
| 24 | 24 | use Doctrine\DBAL\Event\SchemaIndexDefinitionEventArgs; |
| 25 | -use Doctrine\DBAL\DBALException; |
|
| 25 | +use Doctrine\DBAL\Events; |
|
| 26 | 26 | use Doctrine\DBAL\Platforms\AbstractPlatform; |
| 27 | 27 | use function array_filter; |
| 28 | 28 | use function array_map; |
@@ -19,11 +19,11 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL\Schema; |
| 21 | 21 | |
| 22 | +use Doctrine\DBAL\Platforms\AbstractPlatform; |
|
| 22 | 23 | use Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector; |
| 23 | 24 | use Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector; |
| 24 | 25 | use Doctrine\DBAL\Schema\Visitor\NamespaceVisitor; |
| 25 | 26 | use Doctrine\DBAL\Schema\Visitor\Visitor; |
| 26 | -use Doctrine\DBAL\Platforms\AbstractPlatform; |
|
| 27 | 27 | use function array_keys; |
| 28 | 28 | use function strpos; |
| 29 | 29 | use function strtolower; |
@@ -19,9 +19,9 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL\Schema; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Types\Type; |
|
| 23 | -use Doctrine\DBAL\Schema\Visitor\Visitor; |
|
| 24 | 22 | use Doctrine\DBAL\DBALException; |
| 23 | +use Doctrine\DBAL\Schema\Visitor\Visitor; |
|
| 24 | +use Doctrine\DBAL\Types\Type; |
|
| 25 | 25 | use const ARRAY_FILTER_USE_KEY; |
| 26 | 26 | use function array_filter; |
| 27 | 27 | use function array_merge; |
@@ -19,10 +19,10 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL\Schema\Visitor; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Schema\Table; |
|
| 23 | -use Doctrine\DBAL\Schema\TableDiff; |
|
| 24 | 22 | use Doctrine\DBAL\Schema\ForeignKeyConstraint; |
| 25 | 23 | use Doctrine\DBAL\Schema\Sequence; |
| 24 | +use Doctrine\DBAL\Schema\Table; |
|
| 25 | +use Doctrine\DBAL\Schema\TableDiff; |
|
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * Visit a SchemaDiff. |
@@ -19,12 +19,12 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL\Schema\Visitor; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Schema\Table; |
|
| 23 | -use Doctrine\DBAL\Schema\Schema; |
|
| 24 | 22 | use Doctrine\DBAL\Schema\Column; |
| 25 | 23 | use Doctrine\DBAL\Schema\ForeignKeyConstraint; |
| 26 | -use Doctrine\DBAL\Schema\Sequence; |
|
| 27 | 24 | use Doctrine\DBAL\Schema\Index; |
| 25 | +use Doctrine\DBAL\Schema\Schema; |
|
| 26 | +use Doctrine\DBAL\Schema\Sequence; |
|
| 27 | +use Doctrine\DBAL\Schema\Table; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Schema Visitor used for Validation or Generation purposes. |
@@ -22,8 +22,8 @@ |
||
| 22 | 22 | use Doctrine\Common\EventManager; |
| 23 | 23 | use Doctrine\DBAL\Configuration; |
| 24 | 24 | use Doctrine\DBAL\Connection; |
| 25 | -use Doctrine\DBAL\Driver\Connection as DriverConnection; |
|
| 26 | 25 | use Doctrine\DBAL\Driver; |
| 26 | +use Doctrine\DBAL\Driver\Connection as DriverConnection; |
|
| 27 | 27 | use Doctrine\DBAL\Event\ConnectionEventArgs; |
| 28 | 28 | use Doctrine\DBAL\Events; |
| 29 | 29 | use Doctrine\DBAL\Sharding\ShardChoser\ShardChoser; |
@@ -19,13 +19,12 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL\Sharding\SQLAzure; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Schema\Schema; |
|
| 23 | 22 | use Doctrine\DBAL\Connection; |
| 24 | -use Doctrine\DBAL\Types\Type; |
|
| 25 | - |
|
| 23 | +use Doctrine\DBAL\Schema\Schema; |
|
| 26 | 24 | use Doctrine\DBAL\Schema\Synchronizer\AbstractSchemaSynchronizer; |
| 27 | -use Doctrine\DBAL\Schema\Synchronizer\SingleDatabaseSynchronizer; |
|
| 28 | 25 | use Doctrine\DBAL\Schema\Synchronizer\SchemaSynchronizer; |
| 26 | +use Doctrine\DBAL\Schema\Synchronizer\SingleDatabaseSynchronizer; |
|
| 27 | +use Doctrine\DBAL\Types\Type; |
|
| 29 | 28 | use function array_merge; |
| 30 | 29 | |
| 31 | 30 | /** |
@@ -20,8 +20,8 @@ |
||
| 20 | 20 | namespace Doctrine\DBAL\Sharding\SQLAzure; |
| 21 | 21 | |
| 22 | 22 | use Doctrine\DBAL\Connection; |
| 23 | -use Doctrine\DBAL\Sharding\ShardingException; |
|
| 24 | 23 | use Doctrine\DBAL\Sharding\ShardManager; |
| 24 | +use Doctrine\DBAL\Sharding\ShardingException; |
|
| 25 | 25 | use Doctrine\DBAL\Types\Type; |
| 26 | 26 | use function is_bool; |
| 27 | 27 | use function is_scalar; |
@@ -19,8 +19,8 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\DBAL; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Types\Type; |
|
| 23 | 22 | use Doctrine\DBAL\Driver\Statement as DriverStatement; |
| 23 | +use Doctrine\DBAL\Types\Type; |
|
| 24 | 24 | use function is_array; |
| 25 | 25 | use function is_string; |
| 26 | 26 | |