mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-23 00:16:39 +08:00
11 lines
223 B
PHP
11 lines
223 B
PHP
<?php
|
|
|
|
use App\Listeners\Payment;
|
|
use App\Listeners\Profiler;
|
|
use App\Listeners\UserDailyCounter;
|
|
|
|
return [
|
|
'db' => Profiler::class,
|
|
'payment' => Payment::class,
|
|
'userDailyCounter' => UserDailyCounter::class,
|
|
]; |