| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function register() |
||
| 33 | { |
||
| 34 | // Merge config |
||
| 35 | $this->mergeConfigFrom(realpath(__DIR__.'/../../config/config.php'), 'rinvex.tenants'); |
||
| 36 | |||
| 37 | // Bind eloquent models to IoC container |
||
| 38 | $this->registerModels([ |
||
| 39 | 'rinvex.tenants.tenant' => Tenant::class, |
||
| 40 | ]); |
||
| 41 | |||
| 42 | // Register console commands |
||
| 43 | $this->registerCommands($this->commands); |
||
| 44 | } |
||
| 45 | |||
| 57 |