File: //proc/self/root/home/marketing.cfbon.ru/public_html/app/Providers/IicoServiceProvider.php
<?php
namespace App\Providers;
use App\Services\IicoCardService;
use Illuminate\Support\ServiceProvider;
class IicoServiceProvider extends ServiceProvider
{
public function register(): void
{
$this->app->singleton(IicoCardService::class, function ($app) {
return new IicoCardService(
config('app.iicoCardHost'),
config('app.iicoLogin'),
config('app.iicoPassword'),
config('app.iicoOrganizationId'));
});
}
}