Skip to content

Commit

Permalink
Merge pull request #189 from astronom/patch-1
Browse files Browse the repository at this point in the history
Change underlying type for StringValue pseudo type
  • Loading branch information
jaapio committed May 30, 2023
2 parents dfc078e + 977b271 commit b2fe4d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PseudoTypes/StringValue.php
Expand Up @@ -15,7 +15,7 @@

use phpDocumentor\Reflection\PseudoType;
use phpDocumentor\Reflection\Type;
use phpDocumentor\Reflection\Types\Float_;
use phpDocumentor\Reflection\Types\String_;

use function sprintf;

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

public function underlyingType(): Type
{
return new Float_();
return new String_();
}

public function __toString(): string
Expand Down

0 comments on commit b2fe4d2

Please sign in to comment.