service-captcha/app/Providers/AppServiceProvider.php

48 lines
1.4 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
2023-03-05 20:14:04 +06:00
namespace App\Providers;
use App\Captcha\Contracts\ImageBody;
use App\Captcha\Contracts\ImageHead;
use App\Captcha\Contracts\ImageLines;
use App\Captcha\Contracts\ImageManager as ImageManagerContract;
use App\Captcha\Images\Body;
use App\Captcha\Images\Head;
use App\Captcha\Images\ImageManager;
use App\Captcha\Images\Lines;
use App\Services\Api\V1\CaptchaService;
use Illuminate\Contracts\Foundation\Application;
2023-03-05 20:14:04 +06:00
use Illuminate\Support\ServiceProvider;
final class AppServiceProvider extends ServiceProvider
2023-03-05 20:14:04 +06:00
{
/**
* Register any application services.
*/
public function register(): void
{
$this->app->bind(ImageManagerContract::class, function () {
return new ImageManager(imageClassName: config('captcha.imageClass'));
});
$this->app->bind(ImageHead::class, Head::class);
$this->app->bind(ImageBody::class, Body::class);
$this->app->bind(ImageLines::class, Lines::class);
$this->app->bind(CaptchaService::class, function (Application $app) {
return new CaptchaService(
config: config('captcha', []),
imageHead: $app->make(ImageHead::class),
imageBody: $app->make(ImageBody::class)
);
});
2023-03-05 20:14:04 +06:00
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}