2018-03-17 09:12:56 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Cron;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use App\Console\Command;
|
2018-03-17 09:12:56 +08:00
|
|
|
use App\Events\CronMonthly;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This just calls the CronWeekly event, so all of the
|
|
|
|
* listeners, etc can just be called to run those tasks
|
|
|
|
* @package App\Console\Cron
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class Weekly extends Command
|
2018-03-17 09:12:56 +08:00
|
|
|
{
|
|
|
|
protected $signature = 'cron:monthly';
|
|
|
|
protected $description = 'Run the monthly cron tasks';
|
|
|
|
protected $schedule;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2018-03-17 09:12:56 +08:00
|
|
|
public function handle(): void
|
|
|
|
{
|
2018-03-18 07:05:51 +08:00
|
|
|
$this->redirectLoggingToStdout('cron');
|
2018-03-17 09:12:56 +08:00
|
|
|
event(new CronMonthly());
|
|
|
|
}
|
|
|
|
}
|