Skip to content

Commit 977b271

Browse files
committed
Change underlying type for StringValue pseudo type
1 parent dfc078e commit 977b271

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)