File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
require_once (__DIR__ . '/../vendor/autoload.php ' );
7
7
8
8
use phpDocumentor \Reflection \DocBlock \Serializer ;
9
- use phpDocumentor \Reflection \DocBlock \Tags \ Factory \ StaticMethod ;
9
+ use phpDocumentor \Reflection \DocBlock \Tag ;
10
10
use phpDocumentor \Reflection \DocBlockFactory ;
11
11
use phpDocumentor \Reflection \DocBlock \Description ;
12
12
use phpDocumentor \Reflection \DocBlock \DescriptionFactory ;
30
30
* documentation in the form of a Value Object whose properties should not be changed after instantiation (it should be
31
31
* immutable).
32
32
*
33
- * > Important: Tag classes that act as Factories using the `create` method should implement the TagFactory interface.
33
+ * > Important: Tag classes that act as Factories using the `create` method should implement the Tag interface.
34
+ * > Instead, you could extend the abstract class BaseTag that already implements the Tag interface
34
35
*/
35
- final class MyTag extends BaseTag implements StaticMethod
36
+ final class MyTag extends BaseTag
36
37
{
37
38
/**
38
39
* A required property that is used by Formatters to reconstitute the complete tag line.
You can’t perform that action at this time.
0 commit comments