<?php

declare(strict_types=1);

namespace App\Console\Commands;

use App\Jobs\Paynl\FetchStatistics as FetchStatisticsJob;
use Illuminate\Console\Command;

final class FetchStatistics extends Command
{
    protected $signature = 'tbs:fetch-statistics';
    protected $description = 'Fetch statistics';

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