trangshopeeaffiliate/app/Providers/ConverterServiceProvider.php
2026-07-11 22:56:22 +07:00

27 lines
546 B
PHP

<?php
namespace App\Providers;
use App\Interfaces\AffiliateConverterInterface;
use App\Services\Converters\ManualAffiliateConverter;
use Illuminate\Support\ServiceProvider;
class ConverterServiceProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
$this->app->bind(AffiliateConverterInterface::class, ManualAffiliateConverter::class);
}
/**
* Bootstrap services.
*/
public function boot(): void
{
//
}
}