Completed
Push — master ( 342a03...a5d29b )
by Yaro
01:46
created
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
     public function boot()
12 12
     {
13 13
         $this->publishes([
14
-            __DIR__ . '/../config/apidocs.php' => config_path('yaro.apidocs.php'),
14
+            __DIR__.'/../config/apidocs.php' => config_path('yaro.apidocs.php'),
15 15
         ], 'config');
16 16
         
17
-        $this->app['view']->addNamespace('apidocs', __DIR__ . '/../resources/views');
17
+        $this->app['view']->addNamespace('apidocs', __DIR__.'/../resources/views');
18 18
     } // end boot
19 19
 
20 20
     public function register()
21 21
     {
22
-        $configPath = __DIR__ . '/../config/apidocs.php';
22
+        $configPath = __DIR__.'/../config/apidocs.php';
23 23
         $this->mergeConfigFrom($configPath, 'yaro.apidocs');
24 24
         
25 25
         $this->app->singleton('yaro.apidocs', function($app) {
Please login to merge, or discard this patch.