public function TraceableEventDispatcher::__call

Proxies all method calls to the original event dispatcher.

Parameters

string $method The method name:

array $arguments The method arguments:

Return value

mixed

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Debug/TraceableEventDispatcher.php, line 188

Class

TraceableEventDispatcher
Collects some data about event listeners.

Namespace

Symfony\Component\HttpKernel\Debug

Code

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