UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_899fcaff5cd6
/
app
/
Providers
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
EventServiceProvider.php
<?php namespace EstudioLMS\Providers; use EstudioLMS\Events\PaypalDone; use Illuminate\Contracts\Events\Dispatcher as DispatcherContract; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; /** * Class EventServiceProvider * @package EstudioLMS\Providers */ class EventServiceProvider extends ServiceProvider { /** * The event handler mappings for the application. * * @var array */ protected $listen = [ 'EstudioLMS\Events\SendMail' => [ 'EstudioLMS\Handlers\Events\WelcomeMail', ], 'EstudioLMS\Events\PwdResetMail' => [ 'EstudioLMS\Handlers\Events\SendPasswordReset', ], 'EstudioLMS\Events\SiteContact' => [ 'EstudioLMS\Handlers\Events\SendSiteContact', ], \EstudioLMS\Events\PagseguroDone::class => [ \EstudioLMS\Handlers\Events\SendPagseguroTransactionMail::class ], \EstudioLMS\Events\FreeDone::class => [ \EstudioLMS\Handlers\Events\SendFreeTransactionMail::class ], \EstudioLMS\Events\PaypalDone::class => [ \EstudioLMS\Handlers\Events\SendPaypalTransactionMail::class ], \EstudioLMS\Events\BoletoDone::class => [ \EstudioLMS\Handlers\Events\SendBoletoTransactionMail::class ], \EstudioLMS\Events\TicketNotification::class => [ \EstudioLMS\Handlers\Events\SendTicketNotify::class ], \EstudioLMS\Events\CreatedUserByAdmin::class => [ \EstudioLMS\Handlers\Events\SendMailCreatedUserByAdmin::class ], \EstudioLMS\Events\CourseHiredByAdmin::class => [ \EstudioLMS\Handlers\Events\SendMailCourseHiredByAdmin::class ] ]; /** * Register any other events for your application. * * @param \Illuminate\Contracts\Events\Dispatcher $events * @return void */ public function boot(DispatcherContract $events) { parent::boot($events); // } }
Copyright © 2026 - UnknownSec