From c5a39003d5c0ef8e605d123d23355b1cb4112735 Mon Sep 17 00:00:00 2001 From: Mike van Riel Date: Fri, 27 Dec 2019 21:42:04 +0100 Subject: [PATCH] Fixes #181: Example did not implement interface --- src/DocBlock/Tags/Example.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocBlock/Tags/Example.php b/src/DocBlock/Tags/Example.php index 020145f..d27ed47 100644 --- a/src/DocBlock/Tags/Example.php +++ b/src/DocBlock/Tags/Example.php @@ -25,7 +25,7 @@ use function trim; /** * Reflection class for a {@}example tag in a Docblock. */ -final class Example implements Tag +final class Example implements Tag, Factory\StaticMethod { /** @var string Path to a file to use as an example. May also be an absolute URI. */ private $filePath;