From 4afd64087128fd22e7fc6ea7bd0dd7d60c913808 Mon Sep 17 00:00:00 2001 From: Savin Mikhail Date: Fri, 24 Apr 2026 13:59:40 +0700 Subject: [PATCH] fix: suppress PHP 8.4 ArrayAccess deprecations --- src/UnicodeString.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/UnicodeString.php b/src/UnicodeString.php index d8947a2..21d2666 100644 --- a/src/UnicodeString.php +++ b/src/UnicodeString.php @@ -861,6 +861,8 @@ public function offsetGet($offset): string /** * @inheritDoc + * + * @return void */ #[\ReturnTypeWillChange] public function offsetSet($offset, $value) @@ -897,6 +899,8 @@ public function offsetSet($offset, $value) /** * @inheritDoc + * + * @return void */ #[\ReturnTypeWillChange] public function offsetUnset($offset)