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 0bbc9a8 commit 6fc327aCopy full SHA for 6fc327a
src/Plugin/QaCheck/System/ExternalCode.php
@@ -120,6 +120,9 @@ protected function checkExternal(): Result {
120
$external = [];
121
$funcs = array_flip(get_defined_functions()['user']);
122
foreach ($funcs as $func => $_) {
123
+ if (isset($this->qam->internalFunctions[$func])) {
124
+ continue;
125
+ }
126
try {
127
$rf = new ReflectionFunction($func);
128
}
0 commit comments