<?php

declare(strict_types=1);

namespace App\Console\Commands;

use App\Jobs\Paynl\FetchTerminals;
use Illuminate\Console\Command;

final class FetchTerminalsForMerchants extends Command
{
    protected $signature = 'tbs:fetch-terminals-for-merchants';
    protected $description = 'Fetch terminals for merchants';

    public function handle(): void
    {
        FetchTerminals::dispatch();
    }
}
