Total Complexity | 4 |
Total Lines | 54 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 2 | Features | 0 |
1 | <?php |
||
14 | class ServiceProvider extends BaseServiceProvider |
||
15 | { |
||
16 | /** |
||
17 | * Register bindings in the container. |
||
18 | */ |
||
19 | public function register(): void |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Configure package paths. |
||
30 | */ |
||
31 | private function configurePaths() |
||
32 | { |
||
33 | $this->publishes([ |
||
34 | __DIR__ . '/config/config.php' => config_path('eloquentFilter.php'), |
||
35 | ]); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Merge configuration. |
||
40 | */ |
||
41 | private function mergeConfig() |
||
42 | { |
||
43 | $this->mergeConfigFrom( |
||
44 | __DIR__ . '/config/config.php', |
||
45 | 'eloquentFilter' |
||
46 | ); |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * |
||
51 | */ |
||
52 | private function registerBindings() |
||
68 | } |
||
69 | } |
||
70 |