2020-04-09 12:55:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMail;
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
|
|
class BMailServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
$this->mergeConfigFrom(
|
2020-04-09 16:05:44 +02:00
|
|
|
__DIR__.'/../../config/services.php',
|
2020-04-09 12:55:07 +02:00
|
|
|
'bmail'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
$this->publishes([
|
2020-04-09 16:05:44 +02:00
|
|
|
__DIR__.'/../../config/services.php' => config_path('services.php')
|
2020-04-09 12:55:07 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|