This commit is contained in:
Marcel Pociot 2018-11-20 09:55:01 +01:00
parent f2e28614ba
commit 0fa9213133
1 changed files with 1 additions and 13 deletions

View File

@ -11,19 +11,7 @@ class LaravelWebsocketsServiceProvider extends ServiceProvider
*/ */
public function boot() public function boot()
{ {
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../config/skeleton.php' => config_path('skeleton.php'),
], 'config');
/*
$this->loadViewsFrom(__DIR__.'/../resources/views', 'skeleton');
$this->publishes([
__DIR__.'/../resources/views' => base_path('resources/views/vendor/skeleton'),
], 'views');
*/
}
} }
/** /**
@ -31,6 +19,6 @@ class LaravelWebsocketsServiceProvider extends ServiceProvider
*/ */
public function register() public function register()
{ {
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'skeleton');
} }
} }