From 8fd2f38e958125ca89c3f0f938f46da20c88978b Mon Sep 17 00:00:00 2001 From: NabeelKhanYYC <36090031+NabeelKhanYYC@users.noreply.github.com> Date: Tue, 22 Jul 2025 21:58:01 -0600 Subject: [PATCH] Bugfix #412 --- src/DocBlock/StandardTagFactory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/DocBlock/StandardTagFactory.php b/src/DocBlock/StandardTagFactory.php index d029cd1b..f790d8b7 100644 --- a/src/DocBlock/StandardTagFactory.php +++ b/src/DocBlock/StandardTagFactory.php @@ -17,6 +17,7 @@ use phpDocumentor\Reflection\DocBlock\Tags\Author; use phpDocumentor\Reflection\DocBlock\Tags\Covers; use phpDocumentor\Reflection\DocBlock\Tags\Deprecated; +use phpDocumentor\Reflection\DocBlock\Tags\Example; use phpDocumentor\Reflection\DocBlock\Tags\Factory\Factory; use phpDocumentor\Reflection\DocBlock\Tags\Generic; use phpDocumentor\Reflection\DocBlock\Tags\InvalidTag; @@ -84,7 +85,7 @@ final class StandardTagFactory implements TagFactory 'author' => Author::class, 'covers' => Covers::class, 'deprecated' => Deprecated::class, - // 'example' => '\phpDocumentor\Reflection\DocBlock\Tags\Example', + 'example' => Example::class, 'link' => LinkTag::class, 'mixin' => Mixin::class, 'method' => Method::class,