@@ -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 | |
@@ -58,7 +58,9 @@ |
||
| 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); |