Remove dead code #156
This commit is contained in:
parent
f660af5c3b
commit
9f92f45293
@ -15,19 +15,7 @@ class AppServiceProvider extends ServiceProvider
|
|||||||
public function boot()
|
public function boot()
|
||||||
{
|
{
|
||||||
Schema::defaultStringLength(191);
|
Schema::defaultStringLength(191);
|
||||||
|
|
||||||
$this->app->bind('setting', SettingRepository::class);
|
$this->app->bind('setting', SettingRepository::class);
|
||||||
|
|
||||||
# if there's a local.conf.php in the root, then merge that in
|
|
||||||
/*if(file_exists(base_path('config.php'))) {
|
|
||||||
$local_conf = include base_path('config.php');
|
|
||||||
|
|
||||||
foreach($local_conf as $namespace => $override_config) {
|
|
||||||
$config = $this->app['config']->get($namespace, []);
|
|
||||||
$update_config = array_merge_recursive($config, $override_config);
|
|
||||||
$this->app['config']->set($namespace, $update_config);
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user