2015-03-21 02:33:38 -06:00
|
|
|
<?php
|
|
|
|
|
2015-04-19 08:52:39 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
|
|
|
* (c) James Brooks <james@cachethq.io>
|
2015-05-25 17:53:06 +01:00
|
|
|
* (c) Joseph Cohen <joe@cachethq.io>
|
2015-05-23 14:48:33 +01:00
|
|
|
* (c) Graham Campbell <graham@cachethq.io>
|
2015-04-19 08:52:39 +01:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2015-03-21 02:33:38 -06:00
|
|
|
namespace CachetHQ\Cachet\Providers;
|
2015-03-20 18:30:45 -06:00
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class ConfigServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
config([
|
|
|
|
//
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|