Proxies all method calls to the original event dispatcher.
string $method The method name:
array $arguments The method arguments:
public function __call(string $method, array $arguments) : mixed { return $this->dispatcher ->{$method}(...$arguments); }