@@ -64,21 +64,25 @@ public function processNode(Node $node, Scope $scope): array
64
64
$ description = sprintf ('%s %s ' , $ typeDescription , SprintfHelper::escapeFormatString ($ traitName ));
65
65
}
66
66
67
+ $ escapedDescription = SprintfHelper::escapeFormatString ($ description );
68
+ $ upperCaseDescription = ucfirst ($ description );
69
+ $ escapedUpperCaseDescription = SprintfHelper::escapeFormatString ($ upperCaseDescription );
70
+
67
71
return $ this ->genericAncestorsCheck ->check (
68
72
$ node ->traits ,
69
73
array_map (static fn (UsesTag $ tag ): Type => $ tag ->getType (), $ useTags ),
70
- sprintf ('%s @use tag contains incompatible type %%s. ' , ucfirst ( $ description ) ),
71
- sprintf ('%s @use tag contains unresolvable type. ' , ucfirst ( $ description ) ),
72
- sprintf ('%s has @use tag, but does not use any trait. ' , ucfirst ( $ description ) ),
73
- sprintf ('The @use tag of %s describes %%s but the %s uses %%s. ' , $ description , $ typeDescription ),
74
+ sprintf ('%s @use tag contains incompatible type %%s. ' , $ escapedUpperCaseDescription ),
75
+ sprintf ('%s @use tag contains unresolvable type. ' , $ upperCaseDescription ),
76
+ sprintf ('%s has @use tag, but does not use any trait. ' , $ upperCaseDescription ),
77
+ sprintf ('The @use tag of %s describes %%s but the %s uses %%s. ' , $ escapedDescription , $ typeDescription ),
74
78
'PHPDoc tag @use contains generic type %s but %s %s is not generic. ' ,
75
79
'Generic type %s in PHPDoc tag @use does not specify all template types of %s %s: %s ' ,
76
80
'Generic type %s in PHPDoc tag @use specifies %d template types, but %s %s supports only %d: %s ' ,
77
81
'Type %s in generic type %s in PHPDoc tag @use is not subtype of template type %s of %s %s. ' ,
78
82
'Call-site variance annotation of %s in generic type %s in PHPDoc tag @use is not allowed. ' ,
79
83
'PHPDoc tag @use has invalid type %s. ' ,
80
- sprintf ('%s uses generic trait %%s but does not specify its types: %%s ' , ucfirst ( $ description ) ),
81
- sprintf ('in used type %%s of %s ' , $ description ),
84
+ sprintf ('%s uses generic trait %%s but does not specify its types: %%s ' , $ escapedUpperCaseDescription ),
85
+ sprintf ('in used type %%s of %s ' , $ escapedDescription ),
82
86
);
83
87
}
84
88
0 commit comments