78fd8367a1
* Add alternative to using the artisan schedule runner * StyleCI fixes * Add additional cron time periods * Style fixes * Typo * Update the web cron to use the new system * Write out JSON for which tasks were run * Rename cron.php to just cron
30 lines
575 B
PHP
30 lines
575 B
PHP
<?php
|
|
|
|
namespace App\Console\Cron;
|
|
|
|
use App\Contracts\CronCommand;
|
|
use App\Events\CronWeekly;
|
|
|
|
/**
|
|
* This just calls the CronWeekly event, so all of the
|
|
* listeners, etc can just be called to run those tasks.
|
|
*
|
|
* The actual cron tasks are in app/Cron
|
|
*/
|
|
class Weekly extends CronCommand
|
|
{
|
|
protected $signature = 'cron:weekly';
|
|
protected $description = 'Run the weekly cron tasks';
|
|
protected $schedule;
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->callEvent();
|
|
}
|
|
|
|
public function callEvent()
|
|
{
|
|
event(new CronWeekly());
|
|
}
|
|
}
|