diff --git a/core/lib/Drupal/Core/Entity/ContentEntityBase.php b/core/lib/Drupal/Core/Entity/ContentEntityBase.php index 2403582..d124edd 100644 --- a/core/lib/Drupal/Core/Entity/ContentEntityBase.php +++ b/core/lib/Drupal/Core/Entity/ContentEntityBase.php @@ -164,7 +164,7 @@ * * @var bool * - * @see \Drupal\Core\Entity\FieldableEntityInterface::setDeepSerialization() + * @see \Drupal\Core\Entity\ContentEntityInterface::setDeepSerialization() */ protected $deepSerialization = FALSE; @@ -1122,7 +1122,7 @@ public function __clone() { // Ensure that the following properties are actually cloned by // overwriting the original references with ones pointing to copies of // them: enforceIsNew, newRevision, loadedRevisionId, fields, entityKeys, - // translatableEntityKeys values and deepSerialization. + // translatableEntityKeys, values and deepSerialization. $enforce_is_new = $this->enforceIsNew; $this->enforceIsNew = &$enforce_is_new;