Completed
Push — dev ( b3004a...6293b4 )
by James Ekow Abaka
01:37
created
src/commands/Rollback.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
         }
63 63
     }
64 64
 
65
+    /**
66
+     * @param \yentu\manipulators\AbstractDatabaseManipulator $db
67
+     */
65 68
     private function getOperations($db, $set)
66 69
     {
67 70
         $operations = [];
Please login to merge, or discard this 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 implements CommandInterface
11 11
 {
Please login to merge, or discard this patch.
src/commands/Create.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace yentu\commands;
4 4
 
5
-use yentu\Yentu;
6 5
 use yentu\exceptions\CommandException;
7
-use clearice\io\Io;
8 6
 
9 7
 class Create implements CommandInterface
10 8
 {
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/main.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,15 +29,14 @@
 block discarded – undo
29 29
 
30 30
 use clearice\argparser\ArgumentParser;
31 31
 use clearice\io\Io;
32
-use yentu\manipulators\AbstractDatabaseManipulator;
33 32
 use ntentan\atiaa\DriverFactory;
34
-use yentu\Yentu;
35 33
 use ntentan\config\Config;
36
-use yentu\commands\Command;
37
-use yentu\commands\Migrate;
38 34
 use ntentan\panie\Container;
39 35
 use yentu\Cli;
36
+use yentu\Yentu;
40 37
 use yentu\commands\CommandInterface;
38
+use yentu\commands\Migrate;
39
+use yentu\manipulators\AbstractDatabaseManipulator;
41 40
 
42 41
 $container = new Container();
43 42
 $container->setup(get_container_settings());
Please login to merge, or discard this patch.