| 1 | <?php |
||
| 11 | class DeleteUserEvent extends AbstractEvent |
||
| 12 | { |
||
| 13 | |||
| 14 | const DELETE = 'user.delete'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var UserVO |
||
| 18 | */ |
||
| 19 | private $userVo; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param UserVO $authentication |
||
| 23 | * @param string $eventName |
||
| 24 | */ |
||
| 25 | 1 | public function __construct(UserVO $authentication, string $eventName) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return UserVO |
||
| 34 | */ |
||
| 35 | 1 | public function getUserVO() : UserVO |
|
| 39 | } |
||
| 40 |