Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 7 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
13 | class BindingServiceProvider extends PackageServiceProvider |
||
14 | { |
||
15 | /** |
||
16 | * Configure the package. |
||
17 | */ |
||
18 | 26 | public function configurePackage(Package $package): void |
|
19 | { |
||
20 | 26 | $package |
|
21 | 26 | ->name('laravel-auto-binder') |
|
22 | 26 | ->hasCommand(AutoBinderClearCommand::class); |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * Register bindings. |
||
27 | */ |
||
28 | 26 | public function registeringPackage(): void |
|
36 | } |
||
37 | } |
||
39 |