Skip to content

Commit dab633c

Browse files
author
Tom Schlick
committed
register the config in the service provider
1 parent f3d68c5 commit dab633c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/ServiceProvider.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@
99
*/
1010
class ServiceProvider extends BaseServiceProvider
1111
{
12+
/**
13+
* Bootstrap the application services.
14+
*/
15+
public function boot()
16+
{
17+
$this->publishes([
18+
__DIR__ . '/../config/server-push.php' => config_path('server-push.php'),
19+
], 'config');
20+
}
21+
1222
/**
1323
* Register the service provider.
1424
*

0 commit comments

Comments
 (0)