Skip to content

Commit d0e946c

Browse files
committed
Fix code style
1 parent 5763b5b commit d0e946c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/DocBlock/Tags/Factory/AbstractPHPStanFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function __construct(PHPStanFactory ...$factories)
6767
true
6868
);
6969
}
70+
7071
$this->factories = $factories;
7172
}
7273

tests/unit/DocBlock/Tags/Factory/TagFactoryTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function parseTag(string $tag): PhpDocTagNode
4545
$phpDocParser = new PhpDocParser(new TypeParser($constParser), $constParser);
4646
}
4747

48-
$tagNode = ($phpDocParser)->parseTag(new TokenIterator($lexer->tokenize($tag)));
48+
$tagNode = $phpDocParser->parseTag(new TokenIterator($lexer->tokenize($tag)));
4949
if (property_exists($tagNode->value, 'description') === true) {
5050
$tagNode->value->setAttribute('description', $tagNode->value->description);
5151
}

0 commit comments

Comments
 (0)