Completed
Push — dev ( 52be7c...eeece2 )
by James Ekow Abaka
24:25
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/manipulators/AbstractDatabaseManipulator.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use clearice\io\Io;
6 6
 use ntentan\atiaa\DriverFactory;
7
-use yentu\Yentu;
8 7
 use yentu\DatabaseAssertor;
8
+use yentu\Parameters;
9 9
 use yentu\SchemaDescription;
10 10
 use yentu\exceptions\DatabaseManipulatorException;
11
-use yentu\Parameters;
12 11
 
13 12
 abstract class AbstractDatabaseManipulator
14 13
 {
Please login to merge, or discard this patch.
src/commands/Status.php 1 patch
Unused Use Statements   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,11 +3,9 @@
 block discarded – undo
3 3
 namespace yentu\commands;
4 4
 
5 5
 
6
-use yentu\factories\DatabaseManipulatorFactory;
7
-use yentu\manipulators\AbstractDatabaseManipulator;
8
-use yentu\Migrations;
9
-use yentu\Yentu;
10 6
 use clearice\io\Io;
7
+use yentu\Migrations;
8
+use yentu\factories\DatabaseManipulatorFactory;
11 9
 
12 10
 /**
13 11
  *
Please login to merge, or discard this patch.
src/commands/Import.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use clearice\io\Io;
6 6
 use yentu\CodeWriter;
7
+use yentu\Migrations;
7 8
 use yentu\exceptions\CommandException;
8 9
 use yentu\factories\DatabaseManipulatorFactory;
9
-use yentu\Migrations;
10 10
 
11 11
 class Import extends Command implements Reversible
12 12
 {
Please login to merge, or discard this patch.
src/commands/Init.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,11 +27,11 @@
 block discarded – undo
27 27
 namespace yentu\commands;
28 28
 
29 29
 use clearice\io\Io;
30
-use yentu\factories\DatabaseManipulatorFactory;
31 30
 use yentu\Migrations;
32 31
 use yentu\Parameters;
33 32
 use yentu\commands\Reversible;
34 33
 use yentu\exceptions\CommandException;
34
+use yentu\factories\DatabaseManipulatorFactory;
35 35
 
36 36
 /**
37 37
  * 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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
27 27
 namespace yentu\commands;
28 28
 
29 29
 use clearice\io\Io;
30
+use yentu\ChangeLogger;
31
+use yentu\Migrations;
30 32
 use yentu\database\Begin;
31 33
 use yentu\database\DatabaseItem;
32
-use yentu\ChangeLogger;
33 34
 use yentu\database\ForeignKey;
34 35
 use yentu\factories\DatabaseManipulatorFactory;
35
-use yentu\Migrations;
36 36
 
37 37
 /**
38 38
  * 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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace yentu\commands;
4 4
 
5
+use clearice\io\Io;
5 6
 use yentu\ChangeReverser;
6 7
 use yentu\database\DatabaseItem;
7 8
 use yentu\factories\DatabaseManipulatorFactory;
8
-use clearice\io\Io;
9 9
 
10 10
 class Rollback extends Command
11 11
 {
Please login to merge, or discard this patch.
src/main.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@
 block discarded – undo
35 35
 
36 36
 use clearice\argparser\ArgumentParser;
37 37
 use clearice\io\Io;
38
-use yentu\manipulators\AbstractDatabaseManipulator;
39 38
 use ntentan\atiaa\DriverFactory;
40
-use yentu\Migrations;
41 39
 use ntentan\config\Config;
42
-use yentu\commands\Migrate;
43 40
 use ntentan\panie\Container;
44 41
 use yentu\Cli;
42
+use yentu\Migrations;
45 43
 use yentu\commands\Command;
44
+use yentu\commands\Migrate;
45
+use yentu\manipulators\AbstractDatabaseManipulator;
46 46
 
47 47
 $container = new Container();
48 48
 $container->setup(get_container_settings());
Please login to merge, or discard this patch.