public function EntityBCDecorator::onChange

Forwards the call to the decorated entity.

Overrides ComplexDataInterface::onChange

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

public function onChange($property_name) {
  $this->decorated
    ->onChange($property_name);
}