Skip to content

Commit 854a19a

Browse files
committed
Move tags Factory to Tag namespace
1 parent b11617d commit 854a19a

6 files changed

+38
-6
lines changed

src/Parser.php

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
use TypeLang\PHPDoc\Parser\SourceMap;
1616
use TypeLang\PHPDoc\Parser\Tag\TagParser;
1717
use TypeLang\PHPDoc\Parser\Tag\TagParserInterface;
18+
use TypeLang\PHPDoc\Tag\Factory;
19+
use TypeLang\PHPDoc\Tag\FactoryInterface;
1820

1921
/**
2022
* @psalm-suppress UndefinedAttributeClass : JetBrains language attribute may not be available

src/Parser/Tag/TagParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
use TypeLang\PHPDoc\Exception\InvalidTagNameException;
88
use TypeLang\PHPDoc\Exception\RuntimeExceptionInterface;
9-
use TypeLang\PHPDoc\FactoryInterface;
109
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
10+
use TypeLang\PHPDoc\Tag\FactoryInterface;
1111
use TypeLang\PHPDoc\Tag\Tag;
1212

1313
final class TagParser implements TagParserInterface

src/Factory.php src/Tag/Factory.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22

33
declare(strict_types=1);
44

5-
namespace TypeLang\PHPDoc;
5+
namespace TypeLang\PHPDoc\Tag;
66

77
use TypeLang\PHPDoc\Exception\InvalidTagException;
88
use TypeLang\PHPDoc\Exception\ParsingException;
99
use TypeLang\PHPDoc\Exception\RuntimeExceptionInterface;
1010
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
11-
use TypeLang\PHPDoc\Tag\Tag;
1211

1312
final class Factory implements MutableFactoryInterface
1413
{

src/FactoryInterface.php src/Tag/FactoryInterface.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace TypeLang\PHPDoc;
5+
namespace TypeLang\PHPDoc\Tag;
66

77
use TypeLang\PHPDoc\Exception\RuntimeExceptionInterface;
88
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
9-
use TypeLang\PHPDoc\Tag\Tag;
109

1110
interface FactoryInterface
1211
{

src/MutableFactoryInterface.php src/Tag/MutableFactoryInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace TypeLang\PHPDoc;
5+
namespace TypeLang\PHPDoc\Tag;
66

77
interface MutableFactoryInterface extends FactoryInterface
88
{

src/Tag/PrefixedFactory.php

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace TypeLang\PHPDoc\Tag;
6+
7+
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
8+
9+
final class PrefixedFactory implements MutableFactoryInterface
10+
{
11+
/**
12+
* @param non-empty-list<non-empty-string> $prefixes
13+
*/
14+
public function __construct(
15+
private readonly MutableFactoryInterface $delegate,
16+
private readonly array $prefixes = [],
17+
) {}
18+
19+
public function register(array|string $tags, FactoryInterface $delegate): void
20+
{
21+
foreach ($this->prefixes as $prefix) {
22+
foreach ((array) $tags as $tag) {
23+
$this->delegate->register($prefix . $tag, $delegate);
24+
}
25+
}
26+
}
27+
28+
public function create(string $name, string $content, DescriptionParserInterface $descriptions): Tag
29+
{
30+
return $this->delegate->create($name, $content, $descriptions);
31+
}
32+
}

0 commit comments

Comments
 (0)