* upgrade to laravel 13 * phpstan * rollback to symfony 7.4 * fix: ModuleService merge * refactor: new rector rules
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
|
|
/**
|
|
* This event is dispatched when the weekly cron is run
|
|
* It happens after all of the default nightly tasks
|
|
*/
|
|
class CronWeekly extends Event {}
|