You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
509 B
22 lines
509 B
<?php
|
|
|
|
namespace App\Domains\Account\Providers;
|
|
|
|
use App\Domains\Account\Listeners\SyncImportedUserProfile;
|
|
use App\Domains\Identity\Events\Integration\UserImportWasProcessed;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AccountServiceProvider extends ServiceProvider
|
|
{
|
|
public static array $listen = [
|
|
UserImportWasProcessed::class => [
|
|
SyncImportedUserProfile::class,
|
|
]
|
|
];
|
|
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|
|
|