From 7407c8c0887d4a9c06f6e88ca7bbe006e5cb7ead Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 18 Feb 2026 05:41:33 +0100 Subject: [PATCH] Fix typo --- src/Rules/Generics/EnumAncestorsRule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rules/Generics/EnumAncestorsRule.php b/src/Rules/Generics/EnumAncestorsRule.php index 67733187e3..3e81967ee5 100644 --- a/src/Rules/Generics/EnumAncestorsRule.php +++ b/src/Rules/Generics/EnumAncestorsRule.php @@ -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',