2025-06-29 08:50:03 +02:00
|
|
|
<?php
|
|
|
|
|
|
2025-06-29 09:37:49 +02:00
|
|
|
use App\Console\Commands\FetchNewArticlesCommand;
|
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2025-06-29 08:50:03 +02:00
|
|
|
|
2025-06-29 15:55:06 +02:00
|
|
|
Schedule::command(FetchNewArticlesCommand::class)->everyMinute();
|