6 lines
160 B
PHP
6 lines
160 B
PHP
<?php
|
|
|
|
use App\Console\Commands\FetchNewArticlesCommand;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command(FetchNewArticlesCommand::class)->hourly();
|