@@ -26,9 +26,9 @@ |
||
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 |
@@ -28,7 +28,6 @@ |
||
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 | * |
@@ -67,7 +67,9 @@ |
||
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 |