public function EntityBCDecorator::getPropertyValues

Forwards the call to the decorated entity.

Overrides ComplexDataInterface::getPropertyValues

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

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