| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class RepositoryServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Bootstrap the application services. |
||
| 11 | */ |
||
| 12 | 74 | public function boot() |
|
| 13 | { |
||
| 14 | 74 | if ($this->app->environment('testing')) { |
|
| 15 | 74 | $this->loadMigrationsFrom([__DIR__ . '/../tests/migrations']); |
|
| 16 | } |
||
| 17 | 74 | } |
|
| 18 | |||
| 19 | /** |
||
| 20 | * Register the application services. |
||
| 21 | */ |
||
| 22 | 74 | public function register() |
|
| 27 | } |
||
| 28 | 74 | } |
|
| 30 |