phpvms/app/Console/Cron/Nightly.php
2018-08-23 08:26:39 -05:00

31 lines
601 B
PHP

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