Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion security/named_hashers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ the name of the hasher to use::
}

If you created your own password hasher implementing the
:class:`SSymfony\\Component\\PasswordHasher\\Hasher\\UserPasswordHasherInterface`,
:class:`Symfony\\Component\\PasswordHasher\\Hasher\\UserPasswordHasherInterface`,
you must register a service for it in order to use it as a named hasher:

.. configuration-block::
Expand Down
2 changes: 1 addition & 1 deletion security/user_provider.rst
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ users will hash their passwords:
$container->loadFromExtension('security', [
// ...
'password_hashers' => [
User::class => [
InMemoryUser::class => [
'algorithm' => 'auto',
],
],
Expand Down