tethys/app/Providers/ConfigServiceProvider.php

24 lines
557 B
PHP
Raw Normal View History

<?php
namespace App\Providers;
2015-07-19 06:49:24 +00:00
use Illuminate\Support\ServiceProvider;
class ConfigServiceProvider extends ServiceProvider
{
2018-08-29 15:18:15 +00:00
/**
* Overwrite any vendor / package configuration.
*
* This service provider is intended to provide a convenient location for you
* to overwrite any "vendor" or package configuration that you may want to
* modify before the application handles the incoming request / command.
*
* @return void
*/
public function register()
{
config([
//
]);
}
2015-07-19 06:49:24 +00:00
}