- πΊπΈUnited States smustgrave
Looks like the change requested by @xjm in #15 was addressed.
The last submitted patch, 16: entity_changed_trait_int_cast_3210064-16.patch, failed testing. View results β
- πΊπΈUnited States mfb San Francisco
Think this was an unrelated failure - back to RTBC
- Status changed to Fixed
about 2 years ago 11:36pm 7 March 2023 -
alexpott β
committed 6bbb08f9 on 10.1.x
Issue #3210064 by mfb, TanujJain-TJ, maosmurf, smustgrave, xjm, samuel....
-
alexpott β
committed 6bbb08f9 on 10.1.x
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
6 months ago 7:31am 17 October 2024 - π§πͺBelgium rp7
Sorry for posting in this old issue, but I was wondering: could it be that we forgot to update the return type of
\Drupal\Core\Entity\EntityChangedInterface::getChangedTime()
?This is still
/** * Gets the timestamp of the last entity change for the current translation. * * @return int * The timestamp of the last entity save operation. */ public function getChangedTime();
While
\Drupal\Core\Entity\EntityChangedTrait::getChangedTime()
is now documented to be able to returnNULL
values:/** * Gets the timestamp of the last entity change for the current translation. * * @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() { $value = $this->get('changed')->value; return isset($value) ? (int) $value : NULL; }
- πΊπΈUnited States mfb San Francisco
@rp7 Interesting, I guess phpstan doesn't warn about such issues in phpdoc? These need to be migrated to actual type declarations at some point..