@@ -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 | |
@@ -61,7 +61,9 @@ |
||
| 61 | 61 | private $initialized = false; |
| 62 | 62 | |
| 63 | 63 | protected function initialize() { |
| 64 | - if($this->initialized) return; |
|
| 64 | + if($this->initialized) { |
|
| 65 | + return; |
|
| 66 | + } |
|
| 65 | 67 | $this->context = ORMContext::getInstance(); |
| 66 | 68 | $this->container = $this->context->getContainer(); |
| 67 | 69 | $this->adapter = $this->container->resolve(DriverAdapter::class); |