Completed
Push — master ( ad83ed...4c8d32 )
by James Ekow Abaka
03:09
created
src/QueryParameters.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,10 +92,10 @@
 block discarded – undo
92 92
         if ($numValues === 1) {
93 93
             $key = "filter_{$startIndex}";
94 94
             if($values[0] === null) {
95
-               $this->whereClause .= "{$field} is NULL";
95
+                $this->whereClause .= "{$field} is NULL";
96 96
             } else {
97
-               $this->whereClause .= "{$field} = :$key";
98
-               $this->boundData[$key] = reset($values);
97
+                $this->whereClause .= "{$field} = :$key";
98
+                $this->boundData[$key] = reset($values);
99 99
             }
100 100
         } else {
101 101
             $this->whereClause .= "{$field} IN (";
Please login to merge, or discard this patch.
src/QueryOperations.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
 
27 27
 namespace ntentan\nibii;
28 28
 
29
-use ntentan\utils\Text;
30 29
 use ntentan\atiaa\Db;
30
+use ntentan\utils\Text;
31 31
 
32 32
 class QueryOperations
33 33
 {
Please login to merge, or discard this patch.
src/RecordWrapper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 
26 26
 namespace ntentan\nibii;
27 27
 
28
-use ntentan\utils\Utils;
29 28
 use ntentan\kaikai\Cache;
30 29
 
31 30
 class RecordWrapper implements \ArrayAccess, \Countable, \Iterator
Please login to merge, or discard this patch.
src/ClassNameResolver.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 
9 9
 namespace ntentan\nibii;
10 10
 
11
+use ntentan\config\Config;
11 12
 use ntentan\nibii\interfaces\ClassResolverInterface;
12 13
 use ntentan\nibii\interfaces\ModelJoinerInterface;
13 14
 use ntentan\nibii\interfaces\TableNameResolverInterface;
14
-use ntentan\config\Config;
15 15
 use ntentan\utils\Text;
16 16
 
17 17
 /**
Please login to merge, or discard this patch.
src/DriverAdapter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace ntentan\nibii;
4 4
 
5
-use ntentan\utils\Text;
6 5
 use ntentan\atiaa\Db;
7 6
 
8 7
 /**
Please login to merge, or discard this patch.
src/DataOperations.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 
26 26
 namespace ntentan\nibii;
27 27
 
28
-use ntentan\utils\Utils;
29 28
 use ntentan\kaikai\Cache;
30 29
 
31 30
 class RecordWrapper implements \ArrayAccess, \Countable, \Iterator
Please login to merge, or discard this patch.