Completed
Push — master ( 6bc7cf...be821e )
by James Ekow Abaka
05:06
created
src/QueryOperations.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
 
27 27
 namespace ntentan\nibii;
28 28
 
29
-use ntentan\utils\Text;
30 29
 use ntentan\atiaa\Db;
31 30
 use ntentan\panie\Container;
31
+use ntentan\utils\Text;
32 32
 
33 33
 class QueryOperations {
34 34
 
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
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
 
29 29
 use ntentan\kaikai\Cache;
30 30
 use ntentan\utils\Text;
31
-use ntentan\atiaa\Db;
32 31
 
33 32
 /**
34 33
  * 
Please login to merge, or discard this patch.
src/Context.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,9 @@
 block discarded – undo
67 67
     }
68 68
     
69 69
     public static function getInstance() {
70
-        if(self::$instance === null) throw new NibiiException("A context has not yet been initialized");
70
+        if(self::$instance === null) {
71
+            throw new NibiiException("A context has not yet been initialized");
72
+        }
71 73
         return self::$instance;
72 74
     }
73 75
     
Please login to merge, or discard this patch.