We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afc7f1a commit 826911dCopy full SHA for 826911d
1 file changed
system/Common.php
@@ -1084,3 +1084,18 @@ function dd(...$vars)
1084
exit;
1085
}
1086
1087
+
1088
1089
+//--------------------------------------------------------------------
1090
1091
+if (! function_exists('trace'))
1092
+{
1093
+ /**
1094
+ * Provides a backtrace to the current execution point, from Kint.
1095
+ */
1096
+ function trace()
1097
+ {
1098
+ Kint::$aliases[] = 'trace';
1099
+ Kint::trace();
1100
+ }
1101
+}
0 commit comments