You are here

protected function NestedSetStorage::doCall in Entity Reference Hierarchy 3.x

Same name and namespace in other branches
  1. 8.2 src/Storage/NestedSetStorage.php \Drupal\entity_hierarchy\Storage\NestedSetStorage::doCall()

Calls proxied class.

Parameters

string $name: Method name.

array $arguments: Method arguments.

Return value

mixed Result of proxied call.

1 call to NestedSetStorage::doCall()
NestedSetStorage::__call in src/Storage/NestedSetStorage.php

File

src/Storage/NestedSetStorage.php, line 127

Class

NestedSetStorage
Wraps the library nested set implementation with JIT table creation.

Namespace

Drupal\entity_hierarchy\Storage

Code

protected function doCall($name, array $arguments) {
  return call_user_func_array([
    $this->proxy,
    $name,
  ], $arguments);
}