Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | class PasswordUpdater implements PasswordUpdaterInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var EncoderFactoryInterface |
||
24 | */ |
||
25 | private $encoderFactory; |
||
26 | |||
27 | /** |
||
28 | * PasswordUpdater constructor. |
||
29 | */ |
||
30 | 18 | public function __construct(EncoderFactoryInterface $encoderFactory) |
|
33 | } |
||
34 | |||
35 | 14 | public function hashPassword(UserInterface $user) |
|
53 |