Skip to content

Commit 46d862c

Browse files
committed
Fix psalm errors
1 parent 854a19a commit 46d862c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Parser.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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;
18+
use TypeLang\PHPDoc\Tag\TagFactory;
1919
use TypeLang\PHPDoc\Tag\FactoryInterface;
2020

2121
/**
@@ -30,7 +30,7 @@ class Parser implements ParserInterface
3030
private readonly TagParserInterface $tags;
3131

3232
public function __construct(
33-
FactoryInterface $tags = new Factory(),
33+
FactoryInterface $tags = new TagFactory(),
3434
) {
3535
$this->tags = new TagParser($tags);
3636
$this->descriptions = new SprintfDescriptionReader($this->tags);

src/Tag/PrefixedFactory.php src/Tag/PrefixedTagFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
88

9-
final class PrefixedFactory implements MutableFactoryInterface
9+
final class PrefixedTagFactory implements MutableFactoryInterface
1010
{
1111
/**
1212
* @param non-empty-list<non-empty-string> $prefixes
1313
*/
1414
public function __construct(
1515
private readonly MutableFactoryInterface $delegate,
16-
private readonly array $prefixes = [],
16+
private readonly array $prefixes,
1717
) {}
1818

1919
public function register(array|string $tags, FactoryInterface $delegate): void

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use TypeLang\PHPDoc\Exception\RuntimeExceptionInterface;
1010
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
1111

12-
final class Factory implements MutableFactoryInterface
12+
final class TagFactory implements MutableFactoryInterface
1313
{
1414
/**
1515
* @param array<non-empty-string, FactoryInterface> $factories

src/Tag/TagProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function getTags(): array
4242
}
4343

4444
/**
45-
* @return \Traversable<array-key, Tag>
45+
* @return \Traversable<int<0, max>, Tag>
4646
*/
4747
public function getIterator(): \Traversable
4848
{

0 commit comments

Comments
 (0)