|
22 | 22 | use phpDocumentor\Reflection\DocBlock\Tags\InvalidTag; |
23 | 23 | use phpDocumentor\Reflection\DocBlock\Tags\Link as LinkTag; |
24 | 24 | use phpDocumentor\Reflection\DocBlock\Tags\Method; |
| 25 | +use phpDocumentor\Reflection\DocBlock\Tags\Mixin; |
25 | 26 | use phpDocumentor\Reflection\DocBlock\Tags\Param; |
26 | 27 | use phpDocumentor\Reflection\DocBlock\Tags\Property; |
27 | 28 | use phpDocumentor\Reflection\DocBlock\Tags\PropertyRead; |
@@ -80,25 +81,26 @@ final class StandardTagFactory implements TagFactory |
80 | 81 | * FQCN to a class that handles it as an array value. |
81 | 82 | */ |
82 | 83 | private array $tagHandlerMappings = [ |
83 | | - 'author' => Author::class, |
84 | | - 'covers' => Covers::class, |
85 | | - 'deprecated' => Deprecated::class, |
86 | | - // 'example' => '\phpDocumentor\Reflection\DocBlock\Tags\Example', |
87 | | - 'link' => LinkTag::class, |
88 | | - 'method' => Method::class, |
89 | | - 'param' => Param::class, |
90 | | - 'property-read' => PropertyRead::class, |
91 | | - 'property' => Property::class, |
| 84 | + 'author' => Author::class, |
| 85 | + 'covers' => Covers::class, |
| 86 | + 'deprecated' => Deprecated::class, |
| 87 | + // 'example' => '\phpDocumentor\Reflection\DocBlock\Tags\Example', |
| 88 | + 'link' => LinkTag::class, |
| 89 | + 'mixin' => Mixin::class, |
| 90 | + 'method' => Method::class, |
| 91 | + 'param' => Param::class, |
| 92 | + 'property-read' => PropertyRead::class, |
| 93 | + 'property' => Property::class, |
92 | 94 | 'property-write' => PropertyWrite::class, |
93 | | - 'return' => Return_::class, |
94 | | - 'see' => SeeTag::class, |
95 | | - 'since' => Since::class, |
96 | | - 'source' => Source::class, |
97 | | - 'throw' => Throws::class, |
98 | | - 'throws' => Throws::class, |
99 | | - 'uses' => Uses::class, |
100 | | - 'var' => Var_::class, |
101 | | - 'version' => Version::class, |
| 95 | + 'return' => Return_::class, |
| 96 | + 'see' => SeeTag::class, |
| 97 | + 'since' => Since::class, |
| 98 | + 'source' => Source::class, |
| 99 | + 'throw' => Throws::class, |
| 100 | + 'throws' => Throws::class, |
| 101 | + 'uses' => Uses::class, |
| 102 | + 'var' => Var_::class, |
| 103 | + 'version' => Version::class, |
102 | 104 | ]; |
103 | 105 |
|
104 | 106 | /** |
|
0 commit comments