1 | <?php |
||
8 | class RequestPassword |
||
9 | { |
||
10 | /** |
||
11 | * @var UserInterface |
||
12 | */ |
||
13 | private $user; |
||
14 | |||
15 | /** |
||
16 | * @var UserRepositoryCollection |
||
17 | */ |
||
18 | private $userRepositoryCollection; |
||
19 | |||
20 | /** |
||
21 | * RequestPassword constructor. |
||
22 | * |
||
23 | * @param UserRepositoryCollection $userRepositoryCollection |
||
24 | */ |
||
25 | public function __construct(UserRepositoryCollection $userRepositoryCollection) |
||
29 | |||
30 | /** |
||
31 | * @return UserInterface |
||
32 | */ |
||
33 | public function getUser() |
||
37 | |||
38 | /** |
||
39 | * @param $userName |
||
40 | */ |
||
41 | public function setUser($userName) |
||
45 | } |
||
46 |