Completed
Push — master ( 4f25b6...e7033c )
by Joao
02:34
created
src/Database/MySqlGrammar.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php namespace jlourenco\support\Database;
2 2
 
3
-use Illuminate\Database\Connection;
4
-use Illuminate\Database\Schema\Blueprint as IlluminateBlueprint;
5
-use Illuminate\Database\Schema\Grammars\MySqlGrammar as IlluminateMySqlGrammar;
3
+use Illuminate\Database\Connection;
4
+use Illuminate\Database\Schema\Blueprint as IlluminateBlueprint;
5
+use Illuminate\Database\Schema\Grammars\MySqlGrammar as IlluminateMySqlGrammar;
6 6
 use Illuminate\Support\Fluent;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Commands/SetupCommand.php 1 patch
Unused Use Statements   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,8 @@
 block discarded – undo
1 1
 <?php namespace jlourenco\support\Commands;
2 2
 
3
-use Illuminate\Console\Command;
4
-use Symfony\Component\Console\Input\InputOption;
5
-use Symfony\Component\Console\Input\InputArgument;
6
-use File;
7
-use jlourenco\support\Helpers\FileLoader;
8
-use Setting;
3
+use Illuminate\Console\Command;
4
+use File;
5
+use Setting;
9 6
 use Schema;
10 7
 
11 8
 class SetupCommand extends Command {
Please login to merge, or discard this patch.
src/Commands/ConfigCommand.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,8 @@
 block discarded – undo
1 1
 <?php namespace jlourenco\support\Commands;
2 2
 
3 3
 use Illuminate\Console\Command;
4
-use Symfony\Component\Console\Input\InputOption;
5
-use Symfony\Component\Console\Input\InputArgument;
6 4
 use File;
7
-use jlourenco\support\Helpers\FileLoader;
8 5
 use Setting;
9
-use Schema;
10 6
 
11 7
 class ConfigCommand extends Command {
12 8
 
Please login to merge, or discard this patch.
src/Commands/MigrateCommand.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -1,11 +1,6 @@
 block discarded – undo
1 1
 <?php namespace jlourenco\support\Commands;
2 2
 
3 3
 use Illuminate\Console\Command;
4
-use Symfony\Component\Console\Input\InputOption;
5
-use Symfony\Component\Console\Input\InputArgument;
6
-use File;
7
-use jlourenco\support\Helpers\FileLoader;
8
-use Setting;
9 4
 use Schema;
10 5
 
11 6
 class MigrateCommand extends Command {
Please login to merge, or discard this patch.