You are here

public function ResourceDecoratorBase::getPluginDefinition in RESTful 7.2

This is a decorated resource, get proxy the request until you reach the annotated resource.

1 method overrides ResourceDecoratorBase::getPluginDefinition()
CacheDecoratedResource::getPluginDefinition in src/Plugin/resource/Decorators/CacheDecoratedResource.php
This is a decorated resource, get proxy the call until you reach the annotated resource.

File

src/Plugin/resource/Decorators/ResourceDecoratorBase.php, line 278
Contains \Drupal\restful\Plugin\resource\Decorators\ResourceDecoratorBase.

Class

ResourceDecoratorBase
Class ResourceDecoratorBase.

Namespace

Drupal\restful\Plugin\resource\Decorators

Code

public function getPluginDefinition() {
  return $this->subject
    ->getPluginDefinition();
}