for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the overtrue/laravel-revaluation.
*
* (c) overtrue <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Overtrue\LaravelRevaluation;
use Illuminate\Support\ServiceProvider;
class RevaluationServiceProvider extends ServiceProvider
{
/**
* Application bootstrap event.
public function boot()
$this->publishes([__DIR__.'/config.php' => config_path('/revaluation.php')]);
}
* Register the service provider.
public function register()
setlocale(LC_MONETARY, config('app.locale'));
$this->mergeConfigFrom(__DIR__.'/config.php', 'revaluation');