25 lines
532 B
PHP
25 lines
532 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Console\Cron;
|
||
|
|
||
|
use App\Console\BaseCommand;
|
||
|
use App\Events\CronMonthly;
|
||
|
|
||
|
/**
|
||
|
* This just calls the CronMonthly event, so all of the
|
||
|
* listeners, etc can just be called to run those tasks
|
||
|
* @package App\Console\Cron
|
||
|
*/
|
||
|
class Monthly extends BaseCommand
|
||
|
{
|
||
|
protected $signature = 'cron:monthly';
|
||
|
protected $description = 'Run the monthly cron tasks';
|
||
|
protected $schedule;
|
||
|
|
||
|
public function handle(): void
|
||
|
{
|
||
|
$this->redirectLoggingToStdout();
|
||
|
event(new CronMonthly());
|
||
|
}
|
||
|
}
|