Calls a function in the root namespace.
__call() does not support references https://bugs.php.net/bug.php?id=71256 Because of this, ModuleHandler::getHookListeners() inlines this method so it is not called anywhere in core.
public function __call($name, $args) : mixed { $this->loadFile($name); return ('\\' . $name)(...$args); }