1 | <?php |
||
11 | class EventServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | |||
14 | protected $listen = [ |
||
15 | NewThread::class => [ |
||
16 | NotifyChannelSubscribers::class, |
||
17 | ], |
||
18 | NewReply::class => [ |
||
19 | NotifyThreadSubscribers::class, |
||
20 | ] |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * Register any events for your application. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function boot() |
||
32 | } |
||
33 |