Completed
Pull Request — master (#4198)
by Craig
05:53
created

DeletedRegistrationEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 4
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Zikula package.
7
 *
8
 * Copyright Zikula Foundation - https://ziku.la/
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Zikula\UsersModule\Event;
15
16
/**
17
 * Occurs after a registration record is deleted. This could occur as a result of the administrator deleting the
18
 * record through the approval/denial process, or it could happen because the registration request expired. This
19
 * event will not fire if a registration record is converted to a full user account record. Instead, a
20
 * `user.account.create` event will fire. This is a storage-level event, not a UI event. It should not be used for
21
 * UI-level actions such as redirects.
22
 * The subject of the event is set to the Uid being deleted.
23
 */
24
class DeletedRegistrationEvent extends UserEntityEvent
25
{
26
}
27