38 lines
745 B
PHP
38 lines
745 B
PHP
|
<?php
|
||
|
|
||
|
namespace Bluesquare\Connect;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class ConnectServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* Register any application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
$this->mergeConfigFrom(
|
||
|
__DIR__ . '/../config/bconnect.php',
|
||
|
'bmail'
|
||
|
);
|
||
|
|
||
|
$this->app->singleton(Connect::class, function ($app) {
|
||
|
return new Connect($app);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Bootstrap any application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
$this->publishes([
|
||
|
__DIR__ . '/../config/bconnect.php' => config_path('bconnect.php')
|
||
|
], 'config');
|
||
|
}
|
||
|
}
|