From 89d258a96a7798197cb4576911224d00e2a132e1 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Mon, 26 May 2025 00:21:30 -0500 Subject: [PATCH] chore: convert @psalm-return to @return --- src/Type/Hexadecimal.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Type/Hexadecimal.php b/src/Type/Hexadecimal.php index 2676291..da2623a 100644 --- a/src/Type/Hexadecimal.php +++ b/src/Type/Hexadecimal.php @@ -46,7 +46,7 @@ final class Hexadecimal implements TypeInterface } /** - * @psalm-return non-empty-string + * @return non-empty-string */ public function toString(): string { @@ -54,7 +54,7 @@ final class Hexadecimal implements TypeInterface } /** - * @psalm-return non-empty-string + * @return non-empty-string */ public function __toString(): string { @@ -62,7 +62,7 @@ final class Hexadecimal implements TypeInterface } /** - * @psalm-return non-empty-string + * @return non-empty-string */ public function jsonSerialize(): string { @@ -70,7 +70,7 @@ final class Hexadecimal implements TypeInterface } /** - * @psalm-return non-empty-string + * @return non-empty-string */ public function serialize(): string { @@ -110,7 +110,7 @@ final class Hexadecimal implements TypeInterface } /** - * @psalm-return non-empty-string + * @return non-empty-string */ private function prepareValue(string $value): string {