byos_laravel/routes/console.php

8 lines
296 B
PHP

<?php
use App\Jobs\FetchProxyCloudResponses;
Schedule::job(FetchProxyCloudResponses::class, [])->cron(
config('services.trmnl.proxy_refresh_cron') ? config('services.trmnl.proxy_refresh_cron') :
sprintf('*/%s * * * *', intval(config('services.trmnl.proxy_refresh_minutes', 15)))
);