Implement events for cron expenses; add processing of daily/monthly expenses #136
This commit is contained in:
24
app/Console/Cron/Weekly.php
Normal file
24
app/Console/Cron/Weekly.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Cron;
|
||||
|
||||
use App\Console\BaseCommand;
|
||||
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
|
||||
*/
|
||||
class Weekly extends BaseCommand
|
||||
{
|
||||
protected $signature = 'cron:monthly';
|
||||
protected $description = 'Run the monthly cron tasks';
|
||||
protected $schedule;
|
||||
|
||||
public function handle(): void
|
||||
{
|
||||
$this->redirectLoggingToStdout();
|
||||
event(new CronMonthly());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user