| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class TestServiceProvider extends BaseServiceProvider |
||
| 18 | { |
||
| 19 | protected $defer = false; |
||
| 20 | |||
| 21 | public function register() |
||
| 23 | } |
||
| 24 | |||
| 25 | public function boot() |
||
| 26 | { |
||
| 27 | $this->loadMigrationsFrom( |
||
| 28 | __DIR__ . '/database/migrations' |
||
| 29 | ); |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function loadMigrationsFrom($path) |
||
| 37 | } |
||
| 38 | } |
||
| 39 |