public function EntityBCDecorator::setPropertyValues

Forwards the call to the decorated entity.

Overrides ComplexDataInterface::setPropertyValues

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

public function setPropertyValues($values) {
  return $this->decorated
    ->setPropertyValues($values);
}