From e91df8c4ba8f81a81e9893032131984914058268 Mon Sep 17 00:00:00 2001 From: Anton Komarev Date: Thu, 4 Jan 2024 16:13:45 +0500 Subject: [PATCH] Code cleanup --- src/Character.php | 2 +- src/UnicodeString.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Character.php b/src/Character.php index 6a925ea..752fb49 100644 --- a/src/Character.php +++ b/src/Character.php @@ -119,6 +119,6 @@ public function isCombining(): bool // public function resolveCodePointType(): string // { - // Graphic, Format, Control, Private-Use, Surrogate, Noncharacter, Reserved. +// // Graphic, Format, Control, Private-Use, Surrogate, Noncharacter, Reserved. // } } diff --git a/src/UnicodeString.php b/src/UnicodeString.php index 3a10268..6d6f80f 100644 --- a/src/UnicodeString.php +++ b/src/UnicodeString.php @@ -46,6 +46,9 @@ public function __toString(): string return implode('', $this->characterList); } + /** + * @return list $characterList + */ public function characterList(): array { return $this->characterList;