27 lines
546 B
PHP
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
|
|
{
|
|
//
|
|
}
|
|
}
|