2018-03-17 09:12:56 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
2020-09-04 00:50:42 +08:00
|
|
|
use App\Contracts\Event;
|
|
|
|
|
2018-03-17 09:12:56 +08:00
|
|
|
/**
|
|
|
|
* This event is dispatched when the weekly cron is run
|
|
|
|
* It happens after all of the default nightly tasks
|
|
|
|
*/
|
2020-09-04 00:50:42 +08:00
|
|
|
class CronWeekly extends Event
|
2018-03-17 09:12:56 +08:00
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|