Eloquent\Phony\Hook\FunctionHookManager::restoreGlobalFunctions PHP Method

restoreGlobalFunctions() public method

Effectively removes any function hooks for functions in the global namespace.
    public function restoreGlobalFunctions()
    {
        foreach (self::$hooks as $key => $data) {
            self::$hooks[$key]['callback'] = null;
        }
    }