Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | abstract class AbstractUserPasswordEvent extends AbstractUserEvent |
||
8 | { |
||
9 | const NAME = 'user.defineMe'; |
||
10 | |||
11 | private $plainPassword; |
||
12 | |||
13 | public function __construct(User $entity, string $plainPassword) |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getPlainPassword(): string |
||
26 | } |
||
27 | } |