fix deprecation of eraseCredentials function return type

This commit is contained in:
2026-01-04 21:05:16 +01:00
parent ae1a996ace
commit 338850c5ce

View File

@@ -258,8 +258,10 @@ class KeycloakBearerUser implements UserInterface
*
* This is important if, at any given point, sensitive information like
* the plain-text password is stored on this object.
*
* @return void
*/
public function eraseCredentials()
public function eraseCredentials(): void
{
// TODO: Implement eraseCredentials() method.
}