Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
doctrine/dbal/lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.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\Tools\Console\Helper;
21 21
 
22
-use Symfony\Component\Console\Helper\Helper;
23 22
 use Doctrine\DBAL\Connection;
23
+use Symfony\Component\Console\Helper\Helper;
24 24
 
25 25
 /**
26 26
  * Doctrine CLI Connection Helper.
Please login to merge, or discard this patch.
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/Type.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\Types;
21 21
 
22
+use Doctrine\DBAL\DBALException;
22 23
 use Doctrine\DBAL\ParameterType;
23 24
 use Doctrine\DBAL\Platforms\AbstractPlatform;
24
-use Doctrine\DBAL\DBALException;
25 25
 use function end;
26 26
 use function explode;
27 27
 use function get_class;
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/CacheManager.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Illuminate\Cache;
4 4
 
5 5
 use Closure;
6
-use InvalidArgumentException;
7
-use Illuminate\Contracts\Cache\Store;
8 6
 use Illuminate\Contracts\Cache\Factory as FactoryContract;
7
+use Illuminate\Contracts\Cache\Store;
9 8
 use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
9
+use InvalidArgumentException;
10 10
 
11 11
 /**
12 12
  * @mixin \Illuminate\Contracts\Cache\Repository
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/Console/CacheTableCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Illuminate\Cache\Console;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Illuminate\Support\Composer;
7 6
 use Illuminate\Filesystem\Filesystem;
7
+use Illuminate\Support\Composer;
8 8
 
9 9
 class CacheTableCommand extends Command
10 10
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/Console/ClearCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Cache\Console;
4 4
 
5
-use Illuminate\Console\Command;
6 5
 use Illuminate\Cache\CacheManager;
6
+use Illuminate\Console\Command;
7 7
 use Illuminate\Filesystem\Filesystem;
8
-use Symfony\Component\Console\Input\InputOption;
9 8
 use Symfony\Component\Console\Input\InputArgument;
9
+use Symfony\Component\Console\Input\InputOption;
10 10
 
11 11
 class ClearCommand extends Command
12 12
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/Console/ForgetCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Cache\Console;
4 4
 
5
-use Illuminate\Console\Command;
6 5
 use Illuminate\Cache\CacheManager;
6
+use Illuminate\Console\Command;
7 7
 
8 8
 class ForgetCommand extends Command
9 9
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/DatabaseStore.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use Closure;
6 6
 use Exception;
7 7
 use Illuminate\Contracts\Cache\Store;
8
-use Illuminate\Support\InteractsWithTime;
9 8
 use Illuminate\Database\ConnectionInterface;
9
+use Illuminate\Support\InteractsWithTime;
10 10
 
11 11
 class DatabaseStore implements Store
12 12
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/Lock.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Cache;
4 4
 
5
-use Illuminate\Support\InteractsWithTime;
6 5
 use Illuminate\Contracts\Cache\LockTimeoutException;
6
+use Illuminate\Support\InteractsWithTime;
7 7
 
8 8
 abstract class Lock
9 9
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/MemcachedStore.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Cache;
4 4
 
5
-use Memcached;
6
-use ReflectionMethod;
5
+use Illuminate\Contracts\Cache\LockProvider;
7 6
 use Illuminate\Contracts\Cache\Store;
8 7
 use Illuminate\Support\InteractsWithTime;
9
-use Illuminate\Contracts\Cache\LockProvider;
8
+use Memcached;
9
+use ReflectionMethod;
10 10
 
11 11
 class MemcachedStore extends TaggableStore implements LockProvider, Store
12 12
 {
Please login to merge, or discard this patch.