Completed
Push — master ( 59db5b...ed6a4c )
by James Ekow Abaka
03:47
created
src/ORMContext.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.
src/RecordWrapper.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,9 @@
 block discarded – undo
58 58
     private $initialized = false;
59 59
 
60 60
     public function initialize() {
61
-        if($this->initialized) return;
61
+        if($this->initialized) {
62
+            return;
63
+        }
62 64
         $this->context = ORMContext::getInstance();
63 65
         $this->container = $this->context->getContainer();
64 66
         $this->adapter = $this->container->resolve(DriverAdapter::class);
Please login to merge, or discard this patch.