remove unused variables

As reported by sonarqube.
This commit is contained in:
Sarah Hoffmann
2021-07-09 16:36:42 +02:00
parent 106d960f84
commit 500c61685b
6 changed files with 4 additions and 20 deletions

View File

@@ -78,7 +78,7 @@ class Debug
echo '<th>Address Tokens</th><th>Address Not</th>';
echo '<th>country</th><th>operator</th>';
echo '<th>class</th><th>type</th><th>postcode</th><th>housenumber</th></tr>';
foreach ($aSearches as $iRank => $aRankedSet) {
foreach ($aSearches as $aRankedSet) {
foreach ($aRankedSet as $aRow) {
$aRow->dumpAsHtmlTableRow($aWordsIDs);
}