File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Illuminate/Foundation/Concerns Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ trait ResolvesDumpSource
30
30
];
31
31
32
32
/**
33
- * All of the trace names and its keys .
33
+ * Files that require special trace handling and their levels .
34
34
*
35
35
* @var array<string, int>
36
36
*/
37
- protected static $ traceNames = [
37
+ protected static $ adjustableTraces = [
38
38
'symfony/var-dumper/Resources/functions/dump.php ' => 1 ,
39
39
'Illuminate/Collections/Traits/EnumeratesValues.php ' => 4 ,
40
40
];
@@ -70,7 +70,7 @@ public function resolveDumpSource()
70
70
continue ;
71
71
}
72
72
73
- foreach (self ::$ traceNames as $ name => $ key ) {
73
+ foreach (self ::$ adjustableTraces as $ name => $ key ) {
74
74
if (str_ends_with (
75
75
$ traceFile ['file ' ],
76
76
str_replace ('/ ' , DIRECTORY_SEPARATOR , $ name )
You can’t perform that action at this time.
0 commit comments