EntityInterface::save() can incorrectly returns FALSE when there was a problem

Created on 21 October 2020, over 4 years ago
Updated 16 January 2023, about 2 years ago

Problem/Motivation

The documentation for EntityInterface::save() says:

   * @return int
   *   Either SAVED_NEW or SAVED_UPDATED, depending on the operation performed.

However:

1. EntityBase::save() just hands over to the storage handler and returns what it returns:

  public function save() {
    $storage = $this->entityTypeManager()->getStorage($this->entityTypeId);
    return $storage->save($this);
  }

2. EntityStorageBase::save() calls doSave() on itself, and returns what that returns:

  public function save(EntityInterface $entity) {
    // Track if this entity is new.
    $is_new = $entity->isNew();

    // Execute presave logic and invoke the related hooks.
    $id = $this->doPreSave($entity);

    // Perform the save and reset the static cache for the changed entity.
    $return = $this->doSave($id, $entity);

    // Execute post save logic and invoke the related hooks.
    $this->doPostSave($entity, !$is_new);

    return $return;

and doSave() documents that it can return FALSE:

   * @return bool|int
   *   If the record insert or update failed, returns FALSE. If it succeeded,
   *   returns SAVED_NEW or SAVED_UPDATED, depending on the operation performed.

and indeed we can see this in ContentEntityStorageBase::doSave():

      $return = $entity->isDefaultRevision() ? SAVED_UPDATED : FALSE;

Therefore, it's possible for EntityInterface::save() to return FALSE.

Proposed resolution

Fix the docs.

(And needs backport to D8, but I can't find a tag for that.)

🐛 Bug report
Status

Needs work

Version

10.1

Component
Entity 

Last updated 4 days ago

Created by

🇬🇧United Kingdom joachim

Live updates comments and jobs are added and updated live.
  • Novice

    It would make a good project for someone who is new to the Drupal contribution process. It's preferred over Newbie.

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