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 af14c65 commit b63a9acCopy full SHA for b63a9ac
src/Analyser.php
@@ -140,7 +140,9 @@ public function run(): AnalysisResult
140
141
foreach ($usedSymbolsByKind as $kind => $usedSymbols) {
142
foreach ($usedSymbols as $usedSymbol => $lineNumbers) {
143
- if (isset($this->ignoredSymbols[$usedSymbol])) {
+ $usedSymbolNameForIgnoreCheck = $kind === SymbolKind::FUNCTION ? strtolower($usedSymbol) : $usedSymbol;
144
+
145
+ if (isset($this->ignoredSymbols[$usedSymbolNameForIgnoreCheck])) {
146
continue;
147
}
148
0 commit comments