Skip to content

Commit 628b9ab

Browse files
committed
Rename constant to be more descriptive
1 parent bebde0a commit 628b9ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
use Throwable;
1515

1616
const INCLUDE_DISABLED = false;
17-
const EXCLUDE_DISABLED = true;
17+
const EXCLUDE_DISABLED_FUNCTIONS = true;
1818

1919
$internalFunctions = array_map(
2020
function (string $function) : ReflectionFunction {
2121
return new ReflectionFunction($function);
2222
},
23-
get_defined_functions(EXCLUDE_DISABLED)['internal'] ?? []
23+
get_defined_functions(EXCLUDE_DISABLED_FUNCTIONS)['internal'] ?? []
2424
);
2525

2626
$hasher = new Md5FunctionHasher();

0 commit comments

Comments
 (0)