Skip to content

Commit b2fe4d2

Browse files
authored
Merge pull request #189 from astronom/patch-1
Change underlying type for StringValue pseudo type
2 parents dfc078e + 977b271 commit b2fe4d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PseudoTypes/StringValue.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
use phpDocumentor\Reflection\PseudoType;
1717
use phpDocumentor\Reflection\Type;
18-
use phpDocumentor\Reflection\Types\Float_;
18+
use phpDocumentor\Reflection\Types\String_;
1919

2020
use function sprintf;
2121

@@ -36,7 +36,7 @@ public function getValue(): string
3636

3737
public function underlyingType(): Type
3838
{
39-
return new Float_();
39+
return new String_();
4040
}
4141

4242
public function __toString(): string

0 commit comments

Comments
 (0)