public function TraceableEventDispatcher::__call in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php \Symfony\Component\EventDispatcher\Debug\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
- vendor/symfony/ event-dispatcher/ Debug/ TraceableEventDispatcher.php, line 200 
Class
- TraceableEventDispatcher
- Collects some data about event listeners.
Namespace
Symfony\Component\EventDispatcher\DebugCode
public function __call($method, $arguments) {
  return call_user_func_array(array(
    $this->dispatcher,
    $method,
  ), $arguments);
}