{ "error_code": "500", "data": { "zhuang_tai": "token_no", "times": "1764538817" } }
<?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'));
});
}
}