From 5532dd089c0a30ccd10f3a8cb117f26661f66a22 Mon Sep 17 00:00:00 2001 From: The Fake Cake Date: Tue, 21 Apr 2026 19:31:34 +0200 Subject: [PATCH] Fix wrongly deprecated methods of RevisionableStorageInterface --- stubs/Drupal/Core/Entity/RevisionableStorageInterface.stub | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stubs/Drupal/Core/Entity/RevisionableStorageInterface.stub b/stubs/Drupal/Core/Entity/RevisionableStorageInterface.stub index c6779489..764b5dc4 100644 --- a/stubs/Drupal/Core/Entity/RevisionableStorageInterface.stub +++ b/stubs/Drupal/Core/Entity/RevisionableStorageInterface.stub @@ -7,11 +7,13 @@ interface RevisionableStorageInterface extends EntityStorageInterface { /** * @param int|numeric-string|string $revision_id * @return \Drupal\Core\Entity\RevisionableInterface|null + * @not-deprecated */ public function loadRevision($revision_id); /** * @param int|numeric-string|string $revision_id + * @not-deprecated */ public function deleteRevision($revision_id): void;