| 1 | <?php |
||
| 21 | final class UserSecretEncoder implements UserSecretEncoderInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var SymfonyUserPasswordEncoderInterface |
||
| 25 | */ |
||
| 26 | private $symfonyEncoder; |
||
| 27 | |||
| 28 | public function __construct(SymfonyUserPasswordEncoderInterface $symfonyEncoder) |
||
| 32 | |||
| 33 | public function encode(string $secret, User $user): string |
||
| 37 | } |
||
| 38 |