blob: af59a7947fc2ddec6ce717e49c652e87f79f4479 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
namespace Api\Users;
use Infrastructure\Events\EventServiceProvider;
use Api\Users\Events\UserWasCreated;
use Api\Users\Events\UserWasDeleted;
use Api\Users\Events\UserWasUpdated;
class UserServiceProvider extends EventServiceProvider
{
protected $listen = [
UserWasCreated::class => [
// listeners for when a user is created
],
UserWasDeleted::class => [
// listeners for when a user is deleted
],
UserWasUpdated::class => [
// listeners for when a user is updated
]
];
}
|