Skip to content

Commit

Permalink
Add LegacyPasswordAuthenticatedUserInterface for legacy salt (#1653)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanmac committed Jul 3, 2023
1 parent 4049188 commit 59e3111
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Model/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

namespace Sonata\UserBundle\Model;

use Symfony\Component\Security\Core\User\LegacyPasswordAuthenticatedUserInterface;
use Symfony\Component\Security\Core\User\UserInterface as SymfonyUserInterface;

abstract class User implements UserInterface, \Stringable
abstract class User implements LegacyPasswordAuthenticatedUserInterface, UserInterface, \Stringable
{
/**
* @var int|string|null
Expand Down

0 comments on commit 59e3111

Please sign in to comment.