Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class CascadedSoftDeletesProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Register services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function register() |
||
15 | { |
||
16 | $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'cascaded-soft-deletes'); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Bootstrap services. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function boot() |
||
30 | } |
||
31 | } |
||
33 |