| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace IlyasKazi\Instamojo; |
||
| 3 | class InstamojoServiceProvider extends \Illuminate\Support\ServiceProvider |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * Bootstrap services. |
||
| 7 | * |
||
| 8 | * @return void |
||
| 9 | */ |
||
| 10 | public function boot() |
||
| 11 | { |
||
| 12 | $this->loadRoutesFrom(__DIR__.'/routes/web.php'); |
||
| 13 | $this->loadMigrationsFrom(__DIR__.'/migrations'); |
||
| 14 | } |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Register services. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function register() |
||
| 25 | } |
||
| 26 | } |
||
| 27 |