File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 15
15
use TypeLang \PHPDoc \Parser \SourceMap ;
16
16
use TypeLang \PHPDoc \Parser \Tag \TagParser ;
17
17
use TypeLang \PHPDoc \Parser \Tag \TagParserInterface ;
18
- use TypeLang \PHPDoc \Tag \Factory ;
18
+ use TypeLang \PHPDoc \Tag \TagFactory ;
19
19
use TypeLang \PHPDoc \Tag \FactoryInterface ;
20
20
21
21
/**
@@ -30,7 +30,7 @@ class Parser implements ParserInterface
30
30
private readonly TagParserInterface $ tags ;
31
31
32
32
public function __construct (
33
- FactoryInterface $ tags = new Factory (),
33
+ FactoryInterface $ tags = new TagFactory (),
34
34
) {
35
35
$ this ->tags = new TagParser ($ tags );
36
36
$ this ->descriptions = new SprintfDescriptionReader ($ this ->tags );
Original file line number Diff line number Diff line change 6
6
7
7
use TypeLang \PHPDoc \Parser \Description \DescriptionParserInterface ;
8
8
9
- final class PrefixedFactory implements MutableFactoryInterface
9
+ final class PrefixedTagFactory implements MutableFactoryInterface
10
10
{
11
11
/**
12
12
* @param non-empty-list<non-empty-string> $prefixes
13
13
*/
14
14
public function __construct (
15
15
private readonly MutableFactoryInterface $ delegate ,
16
- private readonly array $ prefixes = [] ,
16
+ private readonly array $ prefixes ,
17
17
) {}
18
18
19
19
public function register (array |string $ tags , FactoryInterface $ delegate ): void
Original file line number Diff line number Diff line change 9
9
use TypeLang \PHPDoc \Exception \RuntimeExceptionInterface ;
10
10
use TypeLang \PHPDoc \Parser \Description \DescriptionParserInterface ;
11
11
12
- final class Factory implements MutableFactoryInterface
12
+ final class TagFactory implements MutableFactoryInterface
13
13
{
14
14
/**
15
15
* @param array<non-empty-string, FactoryInterface> $factories
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public function getTags(): array
42
42
}
43
43
44
44
/**
45
- * @return \Traversable<array-key , Tag>
45
+ * @return \Traversable<int<0, max> , Tag>
46
46
*/
47
47
public function getIterator (): \Traversable
48
48
{
You can’t perform that action at this time.
0 commit comments