@@ -71,8 +71,8 @@ final class StandardTagFactory implements TagFactory
7171 public const REGEX_TAGNAME = '[\w\-\_ \\\\:]+ ' ;
7272
7373 /**
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.
7676 */
7777 private $ tagHandlerMappings = [
7878 'author ' => Author::class,
@@ -97,7 +97,7 @@ final class StandardTagFactory implements TagFactory
9797 ];
9898
9999 /**
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
101101 * FQCN to a class that handles it as an array value.
102102 */
103103 private $ annotationMappings = [];
@@ -125,7 +125,7 @@ final class StandardTagFactory implements TagFactory
125125 *
126126 * @see self::registerTagHandler() to add a new tag handler to the existing default list.
127127 *
128- * @param array<class-string<StaticMethod >> $tagHandlers
128+ * @param array<class-string<Tag >> $tagHandlers
129129 */
130130 public function __construct (FqsenResolver $ fqsenResolver , ?array $ tagHandlers = null )
131131 {
@@ -224,7 +224,7 @@ private function createTag(string $body, string $name, TypeContext $context) : T
224224 /**
225225 * Determines the Fully Qualified Class Name of the Factory or Tag (containing a Factory Method `create`).
226226 *
227- * @return class-string<StaticMethod >
227+ * @return class-string<Tag >
228228 */
229229 private function findHandlerClassName (string $ tagName , TypeContext $ context ) : string
230230 {
0 commit comments