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

Breadcrumb

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

function PEAR::__call

File

vendor/pear/pear-core-minimal/src/PEAR.php, line 216

Class

PEAR
Base class for other PEAR classes. Provides rudimentary emulation of destructors.

Code

public function __call($method, $arguments) {
    if (!isset(self::$bivalentMethods[$method])) {
        trigger_error('Call to undefined method PEAR::' . $method . '()', E_USER_ERROR);
    }
    return call_user_func_array(array(
        __CLASS__,
        '_' . $method,
    ), array_merge(array(
        $this,
    ), $arguments));
}

API Navigation

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