public function EntityBCDecorator::setNewRevision

Forwards the call to the decorated entity.

Overrides EntityInterface::setNewRevision

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

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