<?php

declare(strict_types=1);

namespace App\Jobs\Paynl;

use App\Services\PaynlService;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;

class FetchMerchantsAndPaymentMethods implements ShouldQueue
{
    use Dispatchable;
    use InteractsWithQueue;
    use Queueable;
    use SerializesModels;

    public function handle(PaynlService $paynlService): void
    {
        foreach ($paynlService->merchants() as $merchant) {
            FetchEnabledPaymentMethodForMerchant::dispatch($merchant);
        }
    }
}
