2018-08-25 01:07:14 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Cron;
|
|
|
|
|
2019-09-17 01:08:26 +08:00
|
|
|
use App\Contracts\Command;
|
2018-08-25 01:07:14 +08:00
|
|
|
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
|
|
|
|
{
|
2019-08-11 08:42:35 +08:00
|
|
|
$this->redirectLoggingToFile('cron');
|
2018-08-25 01:07:14 +08:00
|
|
|
event(new CronHourly());
|
|
|
|
}
|
2018-08-25 01:14:35 +08:00
|
|
|
}
|