public function EntityBCDecorator::validate

Forwards the call to the decorated entity.

Overrides TypedDataInterface::validate

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

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