| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php |
||
| 71 | private function registerGeniusService() |
||
| 72 | { |
||
| 73 | //Bind Important Interfaces |
||
| 74 | $this->singleton( |
||
| 75 | GeniusInterface::class, |
||
| 76 | GeniusService::class |
||
| 77 | ); |
||
| 78 | |||
| 79 | // Registering the Facade |
||
| 80 | if ($facade = $this->config()->get('genius.facade')) { |
||
| 81 | $this->alias($facade, Facades\Genius::class); |
||
| 82 | } |
||
| 86 |