From 8fabaada488ff81debb3eaf9fd11c2fb6162c9ea Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 8 Mar 2025 12:45:50 +0100 Subject: [PATCH] Deprecate DoctrineCredentialSourceRepository in Symfony. (#702) Marked DoctrineCredentialSourceRepository as deprecated in preparation for removal in version 6.0.0. Developers are advised to create their own doctrine-based repository implementations. --- .../src/Repository/DoctrineCredentialSourceRepository.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/symfony/src/Repository/DoctrineCredentialSourceRepository.php b/src/symfony/src/Repository/DoctrineCredentialSourceRepository.php index d83786d5..0017c95b 100644 --- a/src/symfony/src/Repository/DoctrineCredentialSourceRepository.php +++ b/src/symfony/src/Repository/DoctrineCredentialSourceRepository.php @@ -14,6 +14,8 @@ /** * @template T of PublicKeyCredentialSource * @template-extends ServiceEntityRepository + * + * @deprecated since 5.2.0, to be removed in 6.0.0. Please create your own doctrine-based repository. */ class DoctrineCredentialSourceRepository extends ServiceEntityRepository implements PublicKeyCredentialSourceRepositoryInterface, CanSaveCredentialSource {