Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
core/vendor/illuminate/cache/Repository.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,20 +2,20 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Cache;
4 4
 
5
-use Closure;
6 5
 use ArrayAccess;
7
-use DateTimeInterface;
8 6
 use BadMethodCallException;
9
-use Illuminate\Support\Carbon;
7
+use Closure;
8
+use DateTimeInterface;
10 9
 use Illuminate\Cache\Events\CacheHit;
11
-use Illuminate\Contracts\Cache\Store;
12
-use Illuminate\Cache\Events\KeyWritten;
13 10
 use Illuminate\Cache\Events\CacheMissed;
14
-use Illuminate\Support\Traits\Macroable;
15 11
 use Illuminate\Cache\Events\KeyForgotten;
16
-use Illuminate\Support\InteractsWithTime;
17
-use Illuminate\Contracts\Events\Dispatcher;
12
+use Illuminate\Cache\Events\KeyWritten;
18 13
 use Illuminate\Contracts\Cache\Repository as CacheContract;
14
+use Illuminate\Contracts\Cache\Store;
15
+use Illuminate\Contracts\Events\Dispatcher;
16
+use Illuminate\Support\Carbon;
17
+use Illuminate\Support\InteractsWithTime;
18
+use Illuminate\Support\Traits\Macroable;
19 19
 
20 20
 /**
21 21
  * @mixin \Illuminate\Contracts\Cache\Store
Please login to merge, or discard this patch.
core/vendor/illuminate/config/Repository.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\Config;
4 4
 
5 5
 use ArrayAccess;
6
-use Illuminate\Support\Arr;
7 6
 use Illuminate\Contracts\Config\Repository as ConfigContract;
7
+use Illuminate\Support\Arr;
8 8
 
9 9
 class Repository implements ArrayAccess, ConfigContract
10 10
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Application.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -3,21 +3,21 @@
 block discarded – undo
3 3
 namespace Illuminate\Console;
4 4
 
5 5
 use Closure;
6
-use Illuminate\Support\ProcessUtils;
7
-use Illuminate\Contracts\Events\Dispatcher;
6
+use Illuminate\Contracts\Console\Application as ApplicationContract;
8 7
 use Illuminate\Contracts\Container\Container;
8
+use Illuminate\Contracts\Events\Dispatcher;
9
+use Illuminate\Support\ProcessUtils;
10
+use Symfony\Component\Console\Application as SymfonyApplication;
11
+use Symfony\Component\Console\Command\Command as SymfonyCommand;
12
+use Symfony\Component\Console\Exception\CommandNotFoundException;
9 13
 use Symfony\Component\Console\Input\ArgvInput;
10 14
 use Symfony\Component\Console\Input\ArrayInput;
11
-use Symfony\Component\Console\Input\InputOption;
12
-use Symfony\Component\Process\PhpExecutableFinder;
13 15
 use Symfony\Component\Console\Input\InputInterface;
14
-use Symfony\Component\Console\Output\ConsoleOutput;
16
+use Symfony\Component\Console\Input\InputOption;
15 17
 use Symfony\Component\Console\Output\BufferedOutput;
18
+use Symfony\Component\Console\Output\ConsoleOutput;
16 19
 use Symfony\Component\Console\Output\OutputInterface;
17
-use Symfony\Component\Console\Application as SymfonyApplication;
18
-use Symfony\Component\Console\Command\Command as SymfonyCommand;
19
-use Symfony\Component\Console\Exception\CommandNotFoundException;
20
-use Illuminate\Contracts\Console\Application as ApplicationContract;
20
+use Symfony\Component\Process\PhpExecutableFinder;
21 21
 
22 22
 class Application extends SymfonyApplication implements ApplicationContract
23 23
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Command.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,18 +2,18 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Console;
4 4
 
5
+use Illuminate\Contracts\Support\Arrayable;
5 6
 use Illuminate\Support\Str;
6 7
 use Illuminate\Support\Traits\Macroable;
7
-use Illuminate\Contracts\Support\Arrayable;
8
+use Symfony\Component\Console\Command\Command as SymfonyCommand;
9
+use Symfony\Component\Console\Formatter\OutputFormatterStyle;
8 10
 use Symfony\Component\Console\Helper\Table;
9 11
 use Symfony\Component\Console\Input\ArrayInput;
10
-use Symfony\Component\Console\Output\NullOutput;
11
-use Symfony\Component\Console\Question\Question;
12 12
 use Symfony\Component\Console\Input\InputInterface;
13
+use Symfony\Component\Console\Output\NullOutput;
13 14
 use Symfony\Component\Console\Output\OutputInterface;
14 15
 use Symfony\Component\Console\Question\ChoiceQuestion;
15
-use Symfony\Component\Console\Formatter\OutputFormatterStyle;
16
-use Symfony\Component\Console\Command\Command as SymfonyCommand;
16
+use Symfony\Component\Console\Question\Question;
17 17
 
18 18
 class Command extends SymfonyCommand
19 19
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/GeneratorCommand.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\Console;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Filesystem\Filesystem;
6
+use Illuminate\Support\Str;
7 7
 use Symfony\Component\Console\Input\InputArgument;
8 8
 
9 9
 abstract class GeneratorCommand extends Command
Please login to merge, or discard this patch.
core/vendor/illuminate/console/OutputStyle.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Console;
4 4
 
5
-use Symfony\Component\Console\Style\SymfonyStyle;
6 5
 use Symfony\Component\Console\Input\InputInterface;
7 6
 use Symfony\Component\Console\Output\OutputInterface;
7
+use Symfony\Component\Console\Style\SymfonyStyle;
8 8
 
9 9
 class OutputStyle extends SymfonyStyle
10 10
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Parser.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Support\Str;
6 6
 use InvalidArgumentException;
7
-use Symfony\Component\Console\Input\InputOption;
8 7
 use Symfony\Component\Console\Input\InputArgument;
8
+use Symfony\Component\Console\Input\InputOption;
9 9
 
10 10
 class Parser
11 11
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Scheduling/CallbackEvent.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Console\Scheduling;
4 4
 
5
-use LogicException;
6
-use InvalidArgumentException;
7 5
 use Illuminate\Contracts\Container\Container;
6
+use InvalidArgumentException;
7
+use LogicException;
8 8
 
9 9
 class CallbackEvent extends Event
10 10
 {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Scheduling/Event.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@
 block discarded – undo
4 4
 
5 5
 use Closure;
6 6
 use Cron\CronExpression;
7
-use Illuminate\Support\Arr;
8
-use Illuminate\Support\Carbon;
9 7
 use GuzzleHttp\Client as HttpClient;
8
+use Illuminate\Contracts\Container\Container;
10 9
 use Illuminate\Contracts\Mail\Mailer;
11
-use Symfony\Component\Process\Process;
10
+use Illuminate\Support\Arr;
11
+use Illuminate\Support\Carbon;
12 12
 use Illuminate\Support\Traits\Macroable;
13
-use Illuminate\Contracts\Container\Container;
13
+use Symfony\Component\Process\Process;
14 14
 
15 15
 class Event
16 16
 {
Please login to merge, or discard this patch.