Skip to content

Commit 2f200f1

Browse files
DanielEScherzerondrejmirtes
authored andcommitted
Extractor: Fix a typo in variable name
1 parent d4a1d45 commit 2f200f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extractor/extract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ private function compareFunctions(Node\FunctionLike $old, Node\FunctionLike $new
556556
if (count($oldAttribGroups) !== count($newAttribGroups)) {
557557
return $this->stmtDiff($old, $new, $updateTo);
558558
}
559-
foreach ($oldAttribGroups as $groupN => $oldGroups) {
559+
foreach ($oldAttribGroups as $groupN => $oldGroup) {
560560
$oldAttribs = $oldGroup->attrs;
561561
$newAttribs = $newAttribGroups[$groupN]->attrs;
562562
if (count($oldAttribs) !== count($newAttribs)) {

0 commit comments

Comments
 (0)