| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class CbAuthServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Bootstrap the application services. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function boot() |
||
| 16 | { |
||
| 17 | $this->app['view']->addNamespace('CbAuth', __DIR__.'/views'); |
||
| 18 | $this->loadRoutesFrom( __DIR__.'/auth_routes.php'); |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Register the application services. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | public function register() |
||
| 28 | } |
||
| 29 | } |
||
| 30 |