EntityChangedTrait return type mismatch

Created on 21 April 2021, almost 4 years ago
Updated 29 January 2023, about 2 years ago

Problem/Motivation

Return type of \Drupal\Core\Entity\EntityChangedTrait::getChangedTime is annotated as integer.
However, content entities (ie. obtained via Node::load($id)) have value of "changed" as string.

Steps to reproduce

    $node = Node::load(1);
    $time = $node->getChangedTime();
    assert(is_int($time));

Proposed resolution

Cast string value to int (but only if it is set, to allow nullable changed field?).

Possibly adjust type hint for getChangedTime() and setChangedTime() to int|null?

Note there is a generally broader issue behind this problem, as all implementations of getChangedTime and getCreatedTime are affected.
The former is limited to 1 line of code, thanks to EntityChangedTrait.
The latter would require either a new EntityCreatedTrait or several changes (Media, Node, User, File, ...)

Remaining tasks

Figure out how to address nullable changed fields (e.g. user and comment).

User interface changes

None.

API changes

Previously the getChangedTime() method returned a string when retrieving values from the database, but now returns an integer.

Data model changes

None.

Release notes snippet

None.

πŸ› Bug report
Status

RTBC

Version

10.1 ✨

Component
EntityΒ  β†’

Last updated 3 days ago

Created by

πŸ‡¦πŸ‡ΉAustria maosmurf

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024