We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebde0a commit 628b9abCopy full SHA for 628b9ab
autoload.php
@@ -14,13 +14,13 @@
14
use Throwable;
15
16
const INCLUDE_DISABLED = false;
17
-const EXCLUDE_DISABLED = true;
+const EXCLUDE_DISABLED_FUNCTIONS = true;
18
19
$internalFunctions = array_map(
20
function (string $function) : ReflectionFunction {
21
return new ReflectionFunction($function);
22
},
23
- get_defined_functions(EXCLUDE_DISABLED)['internal'] ?? []
+ get_defined_functions(EXCLUDE_DISABLED_FUNCTIONS)['internal'] ?? []
24
);
25
26
$hasher = new Md5FunctionHasher();
0 commit comments