1 | <?php |
||
11 | class PasswordResetBatchElement extends BatchElement |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $userModel; |
||
17 | |||
18 | /** |
||
19 | * @var EventDispatcherInterface |
||
20 | */ |
||
21 | private $eventDispatcher; |
||
22 | |||
23 | public function __construct($options, $userModel, EventDispatcherInterface $eventDispatcher) |
||
29 | |||
30 | /** |
||
31 | * @param ResettablePasswordInterface $object |
||
32 | */ |
||
33 | public function apply($object) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function getId() |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getClassName() |
||
56 | } |
||
57 |