| Total Complexity | 5 |
| Total Lines | 74 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class AranguentServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Components to register on the provider. |
||
| 15 | * |
||
| 16 | * @var array<string> |
||
| 17 | */ |
||
| 18 | protected $components = [ |
||
| 19 | 'Migration', |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Bootstrap services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | 343 | public function boot() |
|
| 39 | 343 | ]); |
|
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Register services. |
||
| 44 | * |
||
| 45 | * @return void |
||
| 46 | */ |
||
| 47 | 343 | public function register() |
|
| 87 |