mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 08:43:19 +01:00
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\LogoService;
|
|
use App\Services\SettingService;
|
|
use App\Services\ReleaseRadarService;
|
|
use App\Services\TwoFAccountService;
|
|
use App\Factories\MigratorFactoryInterface;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Contracts\Support\DeferrableProvider;
|
|
|
|
class TwoFAuthServiceProvider extends ServiceProvider implements DeferrableProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton(TwoFAccountService::class, function ($app) {
|
|
return new TwoFAccountService($app->make(MigratorFactoryInterface::class));
|
|
});
|
|
|
|
$this->app->singleton(SettingService::class, function () {
|
|
return new SettingService();
|
|
});
|
|
|
|
$this->app->singleton(LogoService::class, function () {
|
|
return new LogoService();
|
|
});
|
|
|
|
$this->app->singleton(ReleaseRadarService::class, function () {
|
|
return new ReleaseRadarService();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
|
|
/**
|
|
* Get the services provided by the provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function provides()
|
|
{
|
|
return [
|
|
LogoService::class,
|
|
ReleaseRadarService::class,
|
|
];
|
|
}
|
|
}
|