aedb1f22b6
* Don't allow cancels from certain states * Unused imports * Don't reset the state doubly * Move SetUserActive into listener; code cleanup * Unused imports * Add missing files into htaccess * Move Command contract to correct folder
26 lines
545 B
PHP
26 lines
545 B
PHP
<?php
|
|
|
|
namespace App\Console\Cron;
|
|
|
|
use App\Contracts\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
|
|
*/
|
|
class Monthly extends Command
|
|
{
|
|
protected $signature = 'cron:monthly';
|
|
protected $description = 'Run the monthly cron tasks';
|
|
protected $schedule;
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->redirectLoggingToFile('cron');
|
|
event(new CronMonthly());
|
|
}
|
|
}
|