e99c22b007
* Emails not sending #795 #722 * Fix for news items not being sent; refactor some events; check for opt-in #722 * Formatting * Remove extra parameter
14 lines
210 B
PHP
14 lines
210 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
|
|
/**
|
|
* This event is dispatched when the monthly cron is run
|
|
* It happens after all of the default nightly tasks
|
|
*/
|
|
class CronMonthly extends Event
|
|
{
|
|
}
|