uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
dabbawali.sizzlingcafe.co.in
/
app
/
Providers
/
EventServiceProvider.php
/
/
<?php namespace App\Providers; use App\Events\SendOrderDeliveryBoyMail; use App\Events\SendOrderDeliveryBoyPush; use App\Events\SendOrderDeliveryBoySms; use App\Events\SendOrderGotMail; use App\Events\SendOrderGotPush; use App\Events\SendOrderGotSms; use App\Events\SendOrderMail; use App\Events\SendOrderPush; use App\Events\SendOrderSms; use App\Events\SendResetPassword; use App\Events\SendSmsCode; use App\Listeners\SendOrderDeliveryBoyMailNotification; use App\Listeners\SendOrderDeliveryBoyPushNotification; use App\Listeners\SendOrderDeliveryBoySmsNotification; use App\Listeners\SendOrderGotMailNotification; use App\Listeners\SendOrderGotPushNotification; use App\Listeners\SendOrderGotSmsNotification; use App\Listeners\SendOrderMailNotification; use App\Listeners\SendOrderPushNotification; use App\Listeners\SendOrderSmsNotification; use App\Listeners\SendResetPasswordNotification; use App\Listeners\SendSmsCodeNotification; use App\Models\User; use App\Observers\UserObserver; use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; class EventServiceProvider extends ServiceProvider { /** * The event to listener mappings for the application. * * @var array<class-string, array<int, class-string>> */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class ], SendResetPassword::class => [ SendResetPasswordNotification::class ], SendSmsCode::class => [ SendSmsCodeNotification::class ], SendOrderMail::class => [ SendOrderMailNotification::class ], SendOrderSms::class => [ SendOrderSmsNotification::class ], SendOrderPush::class => [ SendOrderPushNotification::class ], SendOrderDeliveryBoyMail::class => [ SendOrderDeliveryBoyMailNotification::class ], SendOrderDeliveryBoySms::class => [ SendOrderDeliveryBoySmsNotification::class ], SendOrderDeliveryBoyPush::class => [ SendOrderDeliveryBoyPushNotification::class ], SendOrderGotMail::class => [ SendOrderGotMailNotification::class ], SendOrderGotSms::class => [ SendOrderGotSmsNotification::class ], SendOrderGotPush::class => [ SendOrderGotPushNotification::class ] ]; /** * Register any events for your application. * * @return void */ public function boot() { User::observe(UserObserver::class); } /** * Determine if events and listeners should be automatically discovered. * * @return bool */ public function shouldDiscoverEvents() { return false; } }
/home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Providers/EventServiceProvider.php