| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 24 | public function register() |
||
| 25 | { |
||
| 26 | // command |
||
| 27 | $this->app->register(CommandServiderProvider::class); |
||
| 28 | |||
| 29 | // l5-repository |
||
| 30 | $this->app->register(RepositoryServiceProvider::class); |
||
| 31 | |||
| 32 | // laravel passport |
||
| 33 | $this->app->register(LaravelPassportServiceProvider::class); |
||
| 34 | |||
| 35 | // database |
||
| 36 | $this->app->register(DatabaseServiceProvider::class); |
||
| 37 | |||
| 38 | // dev provider |
||
| 39 | $this->registerDevPackages(); |
||
| 40 | } |
||
| 41 | |||
| 49 |