Skip to content

Commit 5a66352

Browse files
authored
Merge pull request #3 from tomschlick/analysis-z32gYP
Applied fixes from StyleCI
2 parents 3a8048c + 3d78376 commit 5a66352

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/ServiceProvider.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ServiceProvider extends BaseServiceProvider
1515
public function boot()
1616
{
1717
$this->publishes([
18-
__DIR__ . '/../config/server-push.php' => config_path('server-push.php'),
18+
__DIR__.'/../config/server-push.php' => config_path('server-push.php'),
1919
], 'config');
2020
}
2121

@@ -36,7 +36,7 @@ public function register()
3636
*/
3737
protected function registerDefaultLinks()
3838
{
39-
$this->mergeConfigFrom(__DIR__ . '/../config/server-push.php', 'server-push');
39+
$this->mergeConfigFrom(__DIR__.'/../config/server-push.php', 'server-push');
4040

4141
$instance = app('server-push');
4242

@@ -47,5 +47,4 @@ protected function registerDefaultLinks()
4747
}
4848
}
4949
}
50-
5150
}

0 commit comments

Comments
 (0)