From ea9b4cc52319bdeb2078ff34cdb2eff90ae3aa22 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 10 Apr 2018 05:55:36 +0000 Subject: [PATCH] Ignore function "call_user_func_array" in the callstack --- src/Core/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/System.php b/src/Core/System.php index 7b68f6131c..9d360dff0c 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -60,7 +60,7 @@ class System extends BaseObject $previous = ['class' => '', 'function' => '']; // The ignore list contains all functions that are only wrapper functions - $ignore = ['fetchUrl']; + $ignore = ['fetchUrl', 'call_user_func_array']; while ($func = array_pop($trace)) { if (!empty($func['class'])) {