for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LaTevaWeb\QueryUpdater;
use Illuminate\Support\ServiceProvider;
class QueryUpdaterServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
$this->publishes([
__DIR__.'/../config/query-updater.php' => config_path('query-updater.php'),
], 'query-updater');
}
* Register the service provider.
public function register()
$this->mergeConfigFrom(__DIR__.'/../config/query-updater.php', 'query-updater');