Completed
Push — master ( bef9a7...2ef34e )
by James Ekow Abaka
03:05
created
src/globals.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
  * THE SOFTWARE.
25 25
  */
26 26
 
27
-use yentu\database\Table;
28 27
 use yentu\database\Schema;
28
+use yentu\database\Table;
29 29
 use yentu\exceptions\CommandException;
30 30
 
31 31
 function begin()
Please login to merge, or discard this patch.
src/commands/Import.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 yentu\commands;
4 4
 
5
-use yentu\DatabaseManipulatorFactory;
6
-use yentu\CodeWriter;
7 5
 use clearice\ConsoleIO;
6
+use yentu\CodeWriter;
7
+use yentu\DatabaseManipulatorFactory;
8 8
 use yentu\Yentu;
9 9
 
10 10
 class Import implements \yentu\Reversible
Please login to merge, or discard this patch.
src/commands/Init.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 
27 27
 namespace yentu\commands;
28 28
 
29
+use clearice\ConsoleIO;
30
+use ntentan\config\Config;
31
+use yentu\DatabaseManipulatorFactory;
29 32
 use yentu\Yentu;
30 33
 use yentu\exceptions\CommandException;
31
-use yentu\DatabaseManipulatorFactory;
32
-use ntentan\config\Config;
33
-use clearice\ConsoleIO;
34 34
 
35 35
 /**
36 36
  * The init command class. This command intiates a project for yentu migration
Please login to merge, or discard this patch.
src/commands/Migrate.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,14 +26,14 @@
 block discarded – undo
26 26
 
27 27
 namespace yentu\commands;
28 28
 
29
-use yentu\database\DatabaseItem;
30
-use yentu\DatabaseManipulatorFactory;
29
+use clearice\ConsoleIO;
30
+use ntentan\config\Config;
31 31
 use yentu\ChangeLogger;
32
+use yentu\DatabaseManipulatorFactory;
33
+use yentu\Reversible;
32 34
 use yentu\Yentu;
35
+use yentu\database\DatabaseItem;
33 36
 use yentu\database\ForeignKey;
34
-use yentu\Reversible;
35
-use ntentan\config\Config;
36
-use clearice\ConsoleIO;
37 37
 
38 38
 /**
39 39
  * The migrate command for the yentu database migration system. This class is
Please login to merge, or discard this patch.
src/commands/Rollback.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 yentu\commands;
4 4
 
5
+use clearice\ConsoleIO;
5 6
 use yentu\ChangeReverser;
6 7
 use yentu\DatabaseManipulatorFactory;
7
-use yentu\database\DatabaseItem;
8
-use clearice\ConsoleIO;
9 8
 use yentu\Yentu;
9
+use yentu\database\DatabaseItem;
10 10
 
11 11
 class Rollback
12 12
 {
Please login to merge, or discard this patch.
src/manipulators/AbstractDatabaseManipulator.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace yentu\manipulators;
4 4
 
5
-use ntentan\atiaa\DriverFactory;
6 5
 use clearice\ConsoleIO;
7
-use yentu\Yentu;
6
+use ntentan\atiaa\DriverFactory;
8 7
 use yentu\DatabaseAssertor;
8
+use yentu\Parameters;
9 9
 use yentu\SchemaDescription;
10
+use yentu\Yentu;
10 11
 use yentu\exceptions\DatabaseManipulatorException;
11
-use yentu\Parameters;
12 12
 
13 13
 abstract class AbstractDatabaseManipulator
14 14
 {
Please login to merge, or discard this patch.
src/cli.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
 
30 30
 use clearice\ArgumentParser;
31 31
 use clearice\ConsoleIO;
32
-use yentu\AbstractDatabaseManipulator;
33 32
 use ntentan\atiaa\DriverFactory;
34
-use yentu\Yentu;
35 33
 use ntentan\config\Config;
34
+use yentu\AbstractDatabaseManipulator;
35
+use yentu\Yentu;
36 36
 
37 37
 $container = new ntentan\panie\Container();
38 38
 $container->setup([
Please login to merge, or discard this patch.
src/commands/Status.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 yentu\commands;
4 4
 
5
-use yentu\Yentu;
6 5
 use clearice\ConsoleIO;
7 6
 use yentu\DatabaseManipulatorFactory;
7
+use yentu\Yentu;
8 8
 
9 9
 /**
10 10
  * 
Please login to merge, or discard this patch.