UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_a0b9623cd445
/
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\SubscriptionHired::class => [ \EstudioLMS\Handlers\Events\SendMailSubscriptionHired::class ], \EstudioLMS\Events\RecurringNotification::class => [ \EstudioLMS\Handlers\Events\SendMailRecurringNotification::class ], \EstudioLMS\Events\CourseHiredByAdmin::class => [ \EstudioLMS\Handlers\Events\SendMailCourseHiredByAdmin::class ], \EstudioLMS\Events\PagarMeDone::class => [ \EstudioLMS\Handlers\Events\SendMailPagarMeTransaction::class ], \EstudioLMS\Events\ReplayComment::class => [ \EstudioLMS\Handlers\Events\SendMailReplayComment::class ], \EstudioLMS\Events\DigitalMagnetSubscribe::class => [ \EstudioLMS\Handlers\Events\SendMailDigitalMagnetLead::class ], \EstudioLMS\Events\UtfAnswered::class => [ \EstudioLMS\Handlers\Events\NotifyUtfAnswered::class ], \EstudioLMS\Events\TaskAnswered::class => [ \EstudioLMS\Handlers\Events\NotifyTaskAnswered::class ], \EstudioLMS\Events\TaskAnsweredByTeacher::class => [ \EstudioLMS\Handlers\Events\NotifyTaskAnsweredByTeacher::class ], \EstudioLMS\Events\UploadDocs::class => [ \EstudioLMS\Handlers\Events\MailDocsUploaded::class ], \EstudioLMS\Events\HotmartDone::class => [ \EstudioLMS\Handlers\Events\SendHotmartTransactionMail::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