We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a8048c + 3d78376 commit 5a66352Copy full SHA for 5a66352
src/ServiceProvider.php
@@ -15,7 +15,7 @@ class ServiceProvider extends BaseServiceProvider
15
public function boot()
16
{
17
$this->publishes([
18
- __DIR__ . '/../config/server-push.php' => config_path('server-push.php'),
+ __DIR__.'/../config/server-push.php' => config_path('server-push.php'),
19
], 'config');
20
}
21
@@ -36,7 +36,7 @@ public function register()
36
*/
37
protected function registerDefaultLinks()
38
39
- $this->mergeConfigFrom(__DIR__ . '/../config/server-push.php', 'server-push');
+ $this->mergeConfigFrom(__DIR__.'/../config/server-push.php', 'server-push');
40
41
$instance = app('server-push');
42
@@ -47,5 +47,4 @@ protected function registerDefaultLinks()
47
48
49
50
-
51
0 commit comments