Completed
Push — master ( 75869c...fd9cc4 )
by James Ekow Abaka
01:42
created
src/ORMContext.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 ntentan\atiaa\DbContext;
6 6
 use ntentan\kaikai\Cache;
7
-use ntentan\nibii\interfaces\ModelFactoryInterface;
8 7
 use ntentan\nibii\interfaces\DriverAdapterFactoryInterface;
8
+use ntentan\nibii\interfaces\ModelFactoryInterface;
9 9
 use ntentan\nibii\interfaces\ValidatorFactoryInterface;
10 10
 
11 11
 /**
Please login to merge, or discard this patch.
src/relationships/HasManyRelationship.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 namespace ntentan\nibii\relationships;
28 28
 
29 29
 use ntentan\utils\Text;
30
-use ntentan\nibii\ORMContext;
31 30
 
32 31
 class HasManyRelationship extends \ntentan\nibii\Relationship {
33 32
 
Please login to merge, or discard this patch.
src/relationships/ManyHaveManyRelationship.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
 
27 27
 namespace ntentan\nibii\relationships;
28 28
 
29
-use ntentan\utils\Text;
30 29
 use ntentan\nibii\NibiiException;
31
-use ntentan\nibii\Relationship;
32 30
 use ntentan\nibii\ORMContext;
31
+use ntentan\nibii\Relationship;
32
+use ntentan\utils\Text;
33 33
 
34 34
 class ManyHaveManyRelationship extends Relationship
35 35
 {
Please login to merge, or discard this patch.
src/factories/DefaultModelFactory.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 ntentan\nibii\factories;
4 4
 
5
-use ntentan\utils\Text;
6 5
 use ntentan\nibii\interfaces\ModelFactoryInterface;
6
+use ntentan\utils\Text;
7 7
 
8 8
 class DefaultModelFactory implements ModelFactoryInterface
9 9
 {
Please login to merge, or discard this patch.
src/QueryOperations.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
 
29 29
 use ntentan\atiaa\Driver;
30 30
 use ntentan\nibii\exceptions\ModelNotFoundException;
31
-use ntentan\nibii\exceptions\NibiiException;
32 31
 use ntentan\utils\Text;
33 32
 
34 33
 /**
Please login to merge, or discard this patch.
src/relationships/BelongsToRelationship.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
 
27 27
 namespace ntentan\nibii\relationships;
28 28
 
29
-use ntentan\nibii\exceptions\FieldNotFoundException;
29
+use ntentan\nibii\ORMContext;
30 30
 use ntentan\nibii\Relationship;
31
+use ntentan\nibii\exceptions\FieldNotFoundException;
31 32
 use ntentan\utils\Text;
32
-use ntentan\nibii\ORMContext;
33 33
 
34 34
 /**
35 35
  * Represents a one to many belongs to relationship.
Please login to merge, or discard this patch.