Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Rules/Generics/EnumAncestorsRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function processNode(Node $node, Scope $scope): array
sprintf('Enum %s @implements tag contains incompatible type %%s.', $escapedEnumName),
sprintf('Enum %s @implements tag contains unresolvable type.', $enumName),
sprintf('Enum %s has @implements tag, but does not implement any interface.', $escapedEnumName),
sprintf('The @implements tag of eunm %s describes %%s but the enum implements: %%s', $escapedEnumName),
sprintf('The @implements tag of enum %s describes %%s but the enum implements: %%s', $escapedEnumName),
'PHPDoc tag @implements contains generic type %s but %s %s is not generic.',
'Generic type %s in PHPDoc tag @implements does not specify all template types of %s %s: %s',
'Generic type %s in PHPDoc tag @implements specifies %d template types, but %s %s supports only %d: %s',
Expand Down
Loading