Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Schema.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/SchemaDiffVisitor.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/Visitor.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
vendor/doctrine/dbal/lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureFederationsSynchronizer.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,13 +19,12 @@
 block discarded – undo
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
 /**
Please login to merge, or discard this patch.
doctrine/dbal/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.