File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class SharedDataServiceProvider extends ServiceProvider
15
15
public function boot ()
16
16
{
17
17
$ this ->publishes ([
18
- __DIR__ .'/../../config/shared_data .php ' => config_path ('shared_data .php ' ),
18
+ __DIR__ .'/../../config/shared-data .php ' => config_path ('shared-data .php ' ),
19
19
], 'shared-data-config ' );
20
20
}
21
21
@@ -27,12 +27,12 @@ public function boot()
27
27
public function register ()
28
28
{
29
29
$ this ->mergeConfigFrom (
30
- __DIR__ .'/../../config/shared_data .php ' ,
31
- 'shared_data '
30
+ __DIR__ .'/../../config/shared-data .php ' ,
31
+ 'shared-data '
32
32
);
33
33
34
34
$ this ->app ->singleton (SharedData::class, function () {
35
- return new SharedData ($ this ->app ['config ' ]['shared_data ' ]);
35
+ return new SharedData ($ this ->app ['config ' ]['shared-data ' ]);
36
36
});
37
37
}
38
38
}
You can’t perform that action at this time.
0 commit comments