Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Jan 4, 2024
1 parent e2542eb commit e91df8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Character.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
// }
}
3 changes: 3 additions & 0 deletions src/UnicodeString.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public function __toString(): string
return implode('', $this->characterList);
}

/**
* @return list<Character> $characterList
*/
public function characterList(): array
{
return $this->characterList;
Expand Down

0 comments on commit e91df8c

Please sign in to comment.