Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Configuration.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\Logging\SQLLogger;
23 22
 use Doctrine\Common\Cache\Cache;
23
+use Doctrine\DBAL\Logging\SQLLogger;
24 24
 
25 25
 /**
26 26
  * Configuration container for the Doctrine DBAL.
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,20 +19,20 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL;
21 21
 
22
-use Doctrine\DBAL\Driver\ResultStatement;
23
-use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
24
-use Doctrine\DBAL\Exception\InvalidArgumentException;
25 22
 use Closure;
26
-use Exception;
27
-use Doctrine\DBAL\Types\Type;
28
-use Doctrine\DBAL\Driver\Connection as DriverConnection;
29
-use Doctrine\DBAL\Driver\Statement as DriverStatement;
30 23
 use Doctrine\Common\EventManager;
31
-use Doctrine\DBAL\Cache\ResultCacheStatement;
32
-use Doctrine\DBAL\Cache\QueryCacheProfile;
33 24
 use Doctrine\DBAL\Cache\ArrayStatement;
34 25
 use Doctrine\DBAL\Cache\CacheException;
26
+use Doctrine\DBAL\Cache\QueryCacheProfile;
27
+use Doctrine\DBAL\Cache\ResultCacheStatement;
28
+use Doctrine\DBAL\Driver\Connection as DriverConnection;
35 29
 use Doctrine\DBAL\Driver\PingableConnection;
30
+use Doctrine\DBAL\Driver\ResultStatement;
31
+use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
32
+use Doctrine\DBAL\Driver\Statement as DriverStatement;
33
+use Doctrine\DBAL\Exception\InvalidArgumentException;
34
+use Doctrine\DBAL\Types\Type;
35
+use Exception;
36 36
 use Throwable;
37 37
 use function assert;
38 38
 use function array_key_exists;
Please login to merge, or discard this patch.
doctrine/dbal/lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL\Connections;
21 21
 
22
+use Doctrine\Common\EventManager;
23
+use Doctrine\DBAL\Configuration;
22 24
 use Doctrine\DBAL\Connection;
23 25
 use Doctrine\DBAL\Driver;
24 26
 use Doctrine\DBAL\Driver\Connection as DriverConnection;
25
-use Doctrine\DBAL\Configuration;
26
-use Doctrine\Common\EventManager;
27 27
 use Doctrine\DBAL\Event\ConnectionEventArgs;
28 28
 use Doctrine\DBAL\Events;
29 29
 use function array_rand;
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL;
21 21
 
22
-use Doctrine\DBAL\Exception;
23 22
 use Doctrine\DBAL\Driver;
24 23
 use Doctrine\DBAL\Driver\ExceptionConverterDriver;
24
+use Doctrine\DBAL\Exception;
25 25
 use Doctrine\DBAL\Platforms\AbstractPlatform;
26 26
 use function array_map;
27 27
 use function bin2hex;
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL\Driver\PDOPgSql;
21 21
 
22
+use Doctrine\DBAL\DBALException;
22 23
 use Doctrine\DBAL\Driver\AbstractPostgreSQLDriver;
23 24
 use Doctrine\DBAL\Driver\PDOConnection;
24
-use Doctrine\DBAL\DBALException;
25
-use PDOException;
26 25
 use PDO;
26
+use PDOException;
27 27
 use function defined;
28 28
 
29 29
 /**
Please login to merge, or discard this patch.
vendor/doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL\Event\Listeners;
21 21
 
22
+use Doctrine\Common\EventSubscriber;
22 23
 use Doctrine\DBAL\Event\ConnectionEventArgs;
23 24
 use Doctrine\DBAL\Events;
24
-use Doctrine\Common\EventSubscriber;
25 25
 
26 26
 /**
27 27
  * MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection.
Please login to merge, or discard this patch.
doctrine/dbal/lib/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL\Event\Listeners;
21 21
 
22
+use Doctrine\Common\EventSubscriber;
22 23
 use Doctrine\DBAL\Event\ConnectionEventArgs;
23 24
 use Doctrine\DBAL\Events;
24
-use Doctrine\Common\EventSubscriber;
25 25
 use function array_change_key_case;
26 26
 use function array_merge;
27 27
 use function count;
Please login to merge, or discard this patch.
dbal/lib/Doctrine/DBAL/Platforms/Keywords/ReservedKeywordsValidator.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,13 +19,13 @@
 block discarded – undo
19 19
 
20 20
 namespace Doctrine\DBAL\Platforms\Keywords;
21 21
 
22
-use Doctrine\DBAL\Schema\Visitor\Visitor;
23
-use Doctrine\DBAL\Schema\Table;
24 22
 use Doctrine\DBAL\Schema\Column;
25 23
 use Doctrine\DBAL\Schema\ForeignKeyConstraint;
24
+use Doctrine\DBAL\Schema\Index;
26 25
 use Doctrine\DBAL\Schema\Schema;
27 26
 use Doctrine\DBAL\Schema\Sequence;
28
-use Doctrine\DBAL\Schema\Index;
27
+use Doctrine\DBAL\Schema\Table;
28
+use Doctrine\DBAL\Schema\Visitor\Visitor;
29 29
 use function implode;
30 30
 use function str_replace;
31 31
 
Please login to merge, or discard this patch.
vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
 use Doctrine\DBAL\Schema\Index;
26 26
 use Doctrine\DBAL\Schema\Sequence;
27 27
 use Doctrine\DBAL\Schema\TableDiff;
28
-use Doctrine\DBAL\Types\BinaryType;
29 28
 use Doctrine\DBAL\Types\BigIntType;
29
+use Doctrine\DBAL\Types\BinaryType;
30 30
 use Doctrine\DBAL\Types\BlobType;
31 31
 use Doctrine\DBAL\Types\IntegerType;
32 32
 use Doctrine\DBAL\Types\Type;
Please login to merge, or discard this patch.