Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. IndexedReader.php

function IndexedReader::__call

Proxies all methods to the delegate.

Parameters

mixed[] $args:

Return value

mixed

File

vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php, line 95

Class

IndexedReader
Allows the reader to be used in-place of Doctrine's reader.

Namespace

Doctrine\Common\Annotations

Code

public function __call(string $method, array $args) {
    return call_user_func_array([
        $this->delegate,
        $method,
    ], $args);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal