Skip to content

Commit de32417

Browse files
author
r-shunmugam
committed
bug fix
1 parent 0381da8 commit de32417

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/CmsServiceProvider.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,20 @@ public function boot()
2121
{
2222

2323
$configPath = __DIR__ . '/config/lfm.php';
24-
2524
$this->mergeConfigFrom($configPath, 'lfm');
2625
$this->publishes([
2726
$configPath => config_path('lfm.php'),
2827
], 'config');
29-
3028
$configPath = __DIR__ . '/config/cms.php';
31-
3229
$this->mergeConfigFrom($configPath, 'cms');
3330
$this->publishes([
3431
$configPath => config_path('cms.php'),
3532
], 'config');
36-
3733
$this->publishes([
38-
__DIR__.'\stubs\skin' => public_path('skin'),
34+
__DIR__.'/stubs/skin' => public_path('skin'),
3935
], 'public');
40-
4136
$this->publishes([
42-
__DIR__.'\stubs\cms' => base_path('cms'),
37+
__DIR__.'/stubs/cms' => base_path('cms'),
4338
], 'public');
4439

4540
Schema::defaultStringLength(191);

0 commit comments

Comments
 (0)