dc51897314
* Additional logging for the stats recalculation * style fix
24 lines
493 B
PHP
24 lines
493 B
PHP
<?php
|
|
|
|
namespace App\Console\Cron;
|
|
|
|
use App\Console\Command;
|
|
use App\Events\CronHourly;
|
|
|
|
/**
|
|
* This just calls the CronHourly event, so all of the
|
|
* listeners, etc can just be called to run those tasks
|
|
*/
|
|
class Hourly extends Command
|
|
{
|
|
protected $signature = 'cron:hourly';
|
|
protected $description = 'Run the hourly cron tasks';
|
|
protected $schedule;
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->redirectLoggingToFile('cron');
|
|
event(new CronHourly());
|
|
}
|
|
}
|