2018-03-17 09:12:56 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Cron;
|
|
|
|
|
2019-09-17 01:08:26 +08:00
|
|
|
use App\Contracts\Command;
|
2018-03-17 09:12:56 +08:00
|
|
|
use App\Events\CronNightly;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This just calls the CronNightly event, so all of the
|
|
|
|
* listeners, etc can just be called to run those tasks
|
2018-08-23 21:26:39 +08:00
|
|
|
*
|
2018-08-27 00:40:04 +08:00
|
|
|
* The actual cron tasks are in app/Cron
|
2018-03-17 09:12:56 +08:00
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class Nightly extends Command
|
2018-03-17 09:12:56 +08:00
|
|
|
{
|
|
|
|
protected $signature = 'cron:nightly';
|
|
|
|
protected $description = 'Run the nightly cron tasks';
|
|
|
|
protected $schedule;
|
|
|
|
|
|
|
|
public function handle(): void
|
|
|
|
{
|
2019-08-11 08:42:35 +08:00
|
|
|
$this->redirectLoggingToFile('cron');
|
2018-03-17 09:12:56 +08:00
|
|
|
event(new CronNightly());
|
|
|
|
}
|
|
|
|
}
|