Skip to content

Commit

Permalink
Fix trailing commas for PHP < 7.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrolGenhald committed Feb 18, 2022
1 parent ea2f452 commit 0476ca7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Psalm/Internal/Analyzer/AttributeAnalyzer.php
Expand Up @@ -31,7 +31,7 @@ public static function analyze(
AttributeGroup $attribute_group,
array $suppressed_issues,
int $target,
?ClassLikeStorage $classlike_storage = null,
?ClassLikeStorage $classlike_storage = null
): void {
if (ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
$source,
Expand Down
2 changes: 1 addition & 1 deletion src/Psalm/Internal/Analyzer/ClassAnalyzer.php
Expand Up @@ -404,7 +404,7 @@ public function analyze(
$class->attrGroups[$i],
$storage->suppressed_issues + $this->getSuppressedIssues(),
1,
$storage,
$storage
);
}

Expand Down

0 comments on commit 0476ca7

Please sign in to comment.