Skip to content

Commit

Permalink
Change underlying type for StringValue pseudo type
Browse files Browse the repository at this point in the history
  • Loading branch information
astronom committed Apr 26, 2023
1 parent dfc078e commit 977b271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PseudoTypes/StringValue.php
Original file line number Diff line number Diff line change
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 977b271

Please sign in to comment.