Skip to content

Commit d37fc05

Browse files
Fix cs
1 parent 1713ab6 commit d37fc05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Rules/Classes/EnumSanityRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public function processNode(Node $node, Scope $scope): array
163163
$caseName,
164164
$this->initializerExprTypeResolver->getType(
165165
$stmt->expr,
166-
InitializerExprContext::fromScope($scope)
166+
InitializerExprContext::fromScope($scope),
167167
)->describe(VerbosityLevel::value()),
168168
))
169169
->identifier('enum.caseWithValue')

tests/PHPStan/Rules/Classes/EnumSanityRuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class EnumSanityRuleTest extends RuleTestCase
1616
protected function getRule(): Rule
1717
{
1818
return new EnumSanityRule(
19-
self::getContainer()->getByType(InitializerExprTypeResolver::class)
19+
self::getContainer()->getByType(InitializerExprTypeResolver::class),
2020
);
2121
}
2222

0 commit comments

Comments
 (0)