Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class SqlFunctionRepositoryServiceProvider extends PackageServiceProvider |
||
13 | { |
||
14 | use ResolvesDatabaseDriver; |
||
15 | |||
16 | /** |
||
17 | * Configure the package. |
||
18 | * |
||
19 | * @param Package $package |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | 2 | public function configurePackage(Package $package): void |
|
24 | { |
||
25 | 2 | $package |
|
26 | 2 | ->name('laravel-sql-function-repository') |
|
27 | 2 | ->hasConfigFile(); |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * Register the bindings. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | 2 | public function packageRegistered(): void |
|
40 | 2 | ); |
|
41 | } |
||
43 |