Testing stuff

This commit is contained in:
Loann 2020-04-09 16:34:54 +02:00
parent a6f5ba39a3
commit 122f2cb69e
2 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@ class BMailServiceProvider extends ServiceProvider
public function register()
{
$this->mergeConfigFrom(
__DIR__.'/../config/services.php',
'services'
__DIR__.'/../config/bmail.php',
'bmail'
);
}
@ -29,7 +29,7 @@ class BMailServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../config/services.php' => config_path('services.php')
__DIR__.'/../config/bmail.php' => config_path('bmail.php')
]);
}
}