Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class ResetPasswordRequestEvent extends Event |
||
16 | { |
||
17 | /** |
||
18 | * @var ResettablePasswordInterface |
||
19 | */ |
||
20 | private $user; |
||
21 | |||
22 | /** |
||
23 | * @param ResettablePasswordInterface $user |
||
24 | */ |
||
25 | function __construct(ResettablePasswordInterface $user) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return ResettablePasswordInterface |
||
32 | */ |
||
33 | public function getUser() |
||
38 |