Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Nov 2, 2021
1 parent f28c7e9 commit ccff300
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dependency/ExportedNode/ExportedClassNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static function decode(array $data): ExportedNode
$nodeType = $node['type'];

return $nodeType::decode($node['data']);
}, $data['statements']),
}, $data['statements'])
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Dependency/ExportedNode/ExportedInterfaceNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static function decode(array $data): ExportedNode
$nodeType = $node['type'];

return $nodeType::decode($node['data']);
}, $data['statements']),
}, $data['statements'])
);
}

Expand Down

0 comments on commit ccff300

Please sign in to comment.