public function EntityBCDecorator::enforceIsNew

Forwards the call to the decorated entity.

Overrides EntityInterface::enforceIsNew

File

drupal/core/lib/Drupal/Core/Entity/EntityBCDecorator.php, line 337
Contains \Drupal\Core\Entity\EntityBCDecorator.

Class

EntityBCDecorator
Provides backwards compatible (BC) access to entity fields.

Namespace

Drupal\Core\Entity

Code

public function enforceIsNew($value = TRUE) {
  return $this->decorated
    ->enforceIsNew($value);
}