remove module temporarily

This commit is contained in:
Nabeel Shahzad
2017-12-05 21:15:16 -06:00
parent 98b619077d
commit 0293346713
6 changed files with 0 additions and 133 deletions

View File

@@ -1,39 +0,0 @@
<?php
namespace Modules\Vacentral\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Factory;
class AppServiceProvider extends ServiceProvider
{
/**
* Boot the application events.
*/
public function boot()
{
$this->registerConfig();
}
/**
* Register the service provider.
*/
public function register()
{
//
}
/**
* Register config.
*/
protected function registerConfig()
{
$this->publishes([
__DIR__.'/../Config/config.php' => config_path('vacentral.php'),
], 'config');
$this->mergeConfigFrom(
__DIR__.'/../Config/config.php', 'vacentral'
);
}
}