phpvms/app/Console/Cron/Nightly.php

26 lines
545 B
PHP
Raw Normal View History

<?php
namespace App\Console\Cron;
use App\Contracts\Command;
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-27 00:40:04 +08:00
* The actual cron tasks are in app/Cron
*/
class Nightly extends Command
{
protected $signature = 'cron:nightly';
protected $description = 'Run the nightly cron tasks';
protected $schedule;
public function handle(): void
{
$this->redirectLoggingToFile('cron');
event(new CronNightly());
}
}