From 919832496795ed44aead1f6e5ec0d5ea0bbeb647 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Wed, 20 Aug 2025 11:38:33 -0700 Subject: [PATCH] Extractor: Fix a typo in variable name --- extractor/extract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractor/extract.php b/extractor/extract.php index 6732187a..9e82073a 100755 --- a/extractor/extract.php +++ b/extractor/extract.php @@ -556,7 +556,7 @@ private function compareFunctions(Node\FunctionLike $old, Node\FunctionLike $new if (count($oldAttribGroups) !== count($newAttribGroups)) { return $this->stmtDiff($old, $new, $updateTo); } - foreach ($oldAttribGroups as $groupN => $oldGroups) { + foreach ($oldAttribGroups as $groupN => $oldGroup) { $oldAttribs = $oldGroup->attrs; $newAttribs = $newAttribGroups[$groupN]->attrs; if (count($oldAttribs) !== count($newAttribs)) {