1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-16 13:16:14 +08:00
2020-03-16 15:33:36 +08:00

19 lines
392 B
PHP

<?php
use App\Listeners\ChapterAdmin;
use App\Listeners\CourseAdmin;
use App\Listeners\Payment;
use App\Listeners\Profiler;
use App\Listeners\UserDailyCounter;
$events = [
'db' => Profiler::class,
'payment' => Payment::class,
'userDailyCounter' => UserDailyCounter::class,
'courseAdmin' => CourseAdmin::class,
'chapterAdmin' => ChapterAdmin::class,
];
return $events;