Merge pull request #4801 from annando/ignore-callstack

Ignore function "call_user_func_array" in the callstack
pull/4802/head
Tobias Diekershoff 2018-04-10 10:04:25 +02:00 zatwierdzone przez GitHub
commit 799bd75fb2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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'])) {