You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We created this issue to not forget to document this new feature. We would really appreciate if you can help us with this task. If you are not sure how to do it, please ask us and we will help you.
To fix this issue, please create a PR against the 7.3 branch in the symfony-docs repository.
Thank you! 😃
The text was updated successfully, but these errors were encountered:
If ``true``, the ``eraseCredentials()`` method of the user object is called
after authentication.
We should probably add a deprecated directive or note section.
@nicolas-grekaserase_credentials option is not deprecated. The after example is
#[\Deprecated]
publicfunctioneraseCredentials(): void
{
}
// If your eraseCredentials() method was used to empty a "password" property:publicfunction__serialize(): array
{
$data = (array) $this;
unset($data["\0".self::class."\0password"]);
return$data;
}
In symfony 8.0, does #[\Deprecated] attribute and eraseCredentials method will be kept then ?
We created this issue to not forget to document this new feature. We would really appreciate if you can help us with this task. If you are not sure how to do it, please ask us and we will help you.
To fix this issue, please create a PR against the 7.3 branch in the symfony-docs repository.
Thank you! 😃
The text was updated successfully, but these errors were encountered: