You are here

public function ResourceFieldResource::__call in RESTful 7.2

If any method not declared, then defer it to the decorated field.

File

src/Plugin/resource/Field/ResourceFieldResource.php, line 334
Contains \Drupal\restful\Plugin\resource\Field\ResourceFieldResource.

Class

ResourceFieldResource

Namespace

Drupal\restful\Plugin\resource\Field

Code

public function __call($name, $arguments) {
  return call_user_func_array(array(
    $this->decorated,
    $name,
  ), $arguments);
}