Skip to content

Commit d2e0e85

Browse files
committed
formatting
1 parent 5b517e8 commit d2e0e85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Illuminate/Foundation/Concerns/ResolvesDumpSource.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ trait ResolvesDumpSource
3030
];
3131

3232
/**
33-
* All of the trace names and its keys.
33+
* Files that require special trace handling and their levels.
3434
*
3535
* @var array<string, int>
3636
*/
37-
protected static $traceNames = [
37+
protected static $adjustableTraces = [
3838
'symfony/var-dumper/Resources/functions/dump.php' => 1,
3939
'Illuminate/Collections/Traits/EnumeratesValues.php' => 4,
4040
];
@@ -70,7 +70,7 @@ public function resolveDumpSource()
7070
continue;
7171
}
7272

73-
foreach (self::$traceNames as $name => $key) {
73+
foreach (self::$adjustableTraces as $name => $key) {
7474
if (str_ends_with(
7575
$traceFile['file'],
7676
str_replace('/', DIRECTORY_SEPARATOR, $name)

0 commit comments

Comments
 (0)