public function EntityBCDecorator::uriRelationships

Forwards the call to the decorated entity.

Overrides EntityInterface::uriRelationships

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

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