Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class UserChangepasswordEvent extends UserEvent |
||
8 | { |
||
9 | const NAME = 'user.changepassword'; |
||
10 | |||
11 | private $plainPassword; |
||
12 | |||
13 | public function __construct(User $entity, string $plainPassword) |
||
14 | { |
||
15 | parent::__construct($entity); |
||
16 | |||
17 | $this->plainPassword = $plainPassword; |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getPlainPassword(): string |
||
26 | } |
||
27 | |||
28 | } |