From 811fe8a3c61c78d26249e9c95cfc7de5c190aff3 Mon Sep 17 00:00:00 2001
From: quietone <quietone@2572884.no-reply.drupal.org>
Date: Fri, 20 Dec 2024 12:47:50 +1300
Subject: [PATCH] Issue #3490858 by mfb, smustgrave: Align return type phpdoc
 for EntityChangedInterface::getChangedTime() with EntityChangedTrait

---
 core/lib/Drupal/Core/Entity/EntityChangedInterface.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/core/lib/Drupal/Core/Entity/EntityChangedInterface.php b/core/lib/Drupal/Core/Entity/EntityChangedInterface.php
index c0f89702e981..424e6f6c9465 100644
--- a/core/lib/Drupal/Core/Entity/EntityChangedInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityChangedInterface.php
@@ -21,8 +21,9 @@ interface EntityChangedInterface extends EntityInterface {
   /**
    * Gets the timestamp of the last entity change for the current translation.
    *
-   * @return int
-   *   The timestamp of the last entity save operation.
+   * @return int|null
+   *   The timestamp of the last entity save operation. Some entities allow a
+   *   NULL value indicating the changed time is unknown.
    */
   public function getChangedTime();
 
-- 
GitLab