@@ -71,8 +71,8 @@ final class StandardTagFactory implements TagFactory
71
71
public const REGEX_TAGNAME = '[\w\-\_ \\\\:]+ ' ;
72
72
73
73
/**
74
- * @var array<class-string<StaticMethod >> An array with a tag as a key, and an
75
- * FQCN to a class that handles it as an array value.
74
+ * @var array<class-string<Tag >> An array with a tag as a key, and an
75
+ * FQCN to a class that handles it as an array value.
76
76
*/
77
77
private $ tagHandlerMappings = [
78
78
'author ' => Author::class,
@@ -97,7 +97,7 @@ final class StandardTagFactory implements TagFactory
97
97
];
98
98
99
99
/**
100
- * @var array<class-string<StaticMethod >> An array with a anotation s a key, and an
100
+ * @var array<class-string<Tag >> An array with a anotation s a key, and an
101
101
* FQCN to a class that handles it as an array value.
102
102
*/
103
103
private $ annotationMappings = [];
@@ -125,7 +125,7 @@ final class StandardTagFactory implements TagFactory
125
125
*
126
126
* @see self::registerTagHandler() to add a new tag handler to the existing default list.
127
127
*
128
- * @param array<class-string<StaticMethod >> $tagHandlers
128
+ * @param array<class-string<Tag >> $tagHandlers
129
129
*/
130
130
public function __construct (FqsenResolver $ fqsenResolver , ?array $ tagHandlers = null )
131
131
{
@@ -224,7 +224,7 @@ private function createTag(string $body, string $name, TypeContext $context) : T
224
224
/**
225
225
* Determines the Fully Qualified Class Name of the Factory or Tag (containing a Factory Method `create`).
226
226
*
227
- * @return class-string<StaticMethod >
227
+ * @return class-string<Tag >
228
228
*/
229
229
private function findHandlerClassName (string $ tagName , TypeContext $ context ) : string
230
230
{
0 commit comments