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

32 lines
603 B
PHP

<?php
namespace App\Console\Cron;
use App\Console\Command;
use App\Events\CronMonthly;
/**
* This just calls the CronMonthly 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 Monthly extends Command
{
protected $signature = 'cron:monthly';
protected $description = 'Run the monthly cron tasks';
protected $schedule;
/**
*
*/
public function handle(): void
{
$this->redirectLoggingToStdout('cron');
event(new CronMonthly());
}
}