From 3d7837676e7dadaa3e8bdb464da96add3cf88302 Mon Sep 17 00:00:00 2001 From: Tom Schlick Date: Fri, 29 Jul 2016 01:44:23 -0400 Subject: [PATCH] Applied fixes from StyleCI --- src/ServiceProvider.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 8237cf6..1d79d64 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -15,7 +15,7 @@ class ServiceProvider extends BaseServiceProvider public function boot() { $this->publishes([ - __DIR__ . '/../config/server-push.php' => config_path('server-push.php'), + __DIR__.'/../config/server-push.php' => config_path('server-push.php'), ], 'config'); } @@ -36,7 +36,7 @@ public function register() */ protected function registerDefaultLinks() { - $this->mergeConfigFrom(__DIR__ . '/../config/server-push.php', 'server-push'); + $this->mergeConfigFrom(__DIR__.'/../config/server-push.php', 'server-push'); $instance = app('server-push'); @@ -47,5 +47,4 @@ protected function registerDefaultLinks() } } } - }