Skip to content

Commit 7d8b3f2

Browse files
committed
Add "@category" tag support
1 parent bc647b4 commit 7d8b3f2

File tree

7 files changed

+68
-4
lines changed

7 files changed

+68
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ composer require type-lang/phpdoc
3535
- [x] `@abstract` - Declare any _Element_ as abstract
3636
- [x] `@api` - Highlight _Element_ as being part of the public API
3737
- [ ] `@author` - TODO
38-
- [ ] `@category` - TODO
38+
- [x] `@category` - Used to organize groups of packages together
3939
- [x] `@copyright` - Used to document the copyright information of any _Element_.
4040
- [ ] `@deprecated` - TODO
4141
- [ ] `@example` - TODO
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace TypeLang\PHPDoc\DocBlock\Tag\CategoryTag;
6+
7+
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
8+
9+
/**
10+
* Used to organize groups of packages together.
11+
*
12+
* The "`@category`" tag was meant in the original de-facto Standard to group
13+
* several _Elements_ by their "`@package`" tags into one category.
14+
* These categories could then be used to aid in the
15+
* generation of API documentation.
16+
*
17+
* This was necessary since the "`@package`" tag, as defined in the
18+
* original Standard, did not allow for more than one hierarchy
19+
* level. Since this has changed this tag SHOULD NOT be used.
20+
*
21+
* Please see the documentation for "`@package`" for details of its usage.
22+
*
23+
* ```
24+
* "@category" [<description>]
25+
* ```
26+
*/
27+
final class CategoryTag extends Tag
28+
{
29+
public function __construct(
30+
string $name,
31+
\Stringable|string|null $description = null,
32+
) {
33+
parent::__construct($name, $description);
34+
}
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace TypeLang\PHPDoc\DocBlock\Tag\CategoryTag;
6+
7+
use TypeLang\PHPDoc\DocBlock\Tag\Factory\TagFactoryInterface;
8+
use TypeLang\PHPDoc\Parser\Content\Stream;
9+
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
10+
11+
/**
12+
* This class is responsible for creating "`@category`" tags.
13+
*
14+
* See {@see CategoryTag} for details about this tag.
15+
*/
16+
final class CategoryTagFactory implements TagFactoryInterface
17+
{
18+
public function create(string $tag, string $content, DescriptionParserInterface $descriptions): CategoryTag
19+
{
20+
$stream = new Stream($tag, $content);
21+
22+
return new CategoryTag(
23+
name: $tag,
24+
description: $stream->toOptionalDescription($descriptions),
25+
);
26+
}
27+
}

src/DocBlock/Tag/SeeTag/SeeTag.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace TypeLang\PHPDoc\DocBlock\Tag\SeeTag;
66

7-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ReferenceInterface;
87
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ElementReference;
8+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ReferenceInterface;
99
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\UriReference;
1010
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
1111

src/DocBlock/Tag/SeeTag/SeeTagFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use TypeLang\Parser\Parser as TypesParser;
88
use TypeLang\Parser\ParserInterface as TypesParserInterface;
99
use TypeLang\PHPDoc\DocBlock\Tag\Factory\TagFactoryInterface;
10-
use TypeLang\PHPDoc\Parser\Content\Stream;
1110
use TypeLang\PHPDoc\Parser\Content\ElementReferenceReader;
11+
use TypeLang\PHPDoc\Parser\Content\Stream;
1212
use TypeLang\PHPDoc\Parser\Content\UriReferenceReader;
1313
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
1414

src/Parser/Content/ElementReferenceReader.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassConstantElementReference;
1313
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassMethodElementReference;
1414
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassPropertyElementReference;
15-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\FunctionReference;
1615
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ElementReference;
16+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\FunctionReference;
1717
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\TypeElementReference;
1818
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\VariableReference;
1919

src/Platform/StandardPlatform.php

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use TypeLang\Parser\ParserInterface as TypesParserInterface;
88
use TypeLang\PHPDoc\DocBlock\Tag\AbstractTag\AbstractTagFactory;
99
use TypeLang\PHPDoc\DocBlock\Tag\ApiTag\ApiTagFactory;
10+
use TypeLang\PHPDoc\DocBlock\Tag\CategoryTag\CategoryTagFactory;
1011
use TypeLang\PHPDoc\DocBlock\Tag\CopyrightTag\CopyrightTagFactory;
1112
use TypeLang\PHPDoc\DocBlock\Tag\Factory\TagFactoryInterface;
1213
use TypeLang\PHPDoc\DocBlock\Tag\FinalTag\FinalTagFactory;
@@ -42,6 +43,7 @@ protected function load(TypesParserInterface $types): iterable
4243
{
4344
yield 'abstract' => new AbstractTagFactory();
4445
yield 'api' => new ApiTagFactory();
46+
yield 'category' => new CategoryTagFactory();
4547
yield 'copyright' => new CopyrightTagFactory();
4648
yield 'extends' => new TemplateExtendsTagFactory($types);
4749
yield 'final' => new FinalTagFactory();

0 commit comments

Comments
 (0)