@@ -8923,6 +8923,23 @@ diff --git a/src/Symfony/Component/Intl/Data/Bundle/Writer/BundleWriterInterface
8923
8923
- public function write(string $path, string $locale, mixed $data);
8924
8924
+ public function write(string $path, string $locale, mixed $data): void;
8925
8925
}
8926
+ diff --git a/src/Symfony/Component/Intl/Transliterator/EmojiTransliterator.php b/src/Symfony/Component/Intl/Transliterator/EmojiTransliterator.php
8927
+ --- a/src/Symfony/Component/Intl/Transliterator/EmojiTransliterator.php
8928
+ +++ b/src/Symfony/Component/Intl/Transliterator/EmojiTransliterator.php
8929
+ @@ -74,5 +74,5 @@ if (!class_exists(\Transliterator::class)) {
8930
+ */
8931
+ #[\ReturnTypeWillChange]
8932
+ - public function getErrorCode(): int|false
8933
+ + public function getErrorCode(): int
8934
+ {
8935
+ return isset($this->transliterator) ? $this->transliterator->getErrorCode() : 0;
8936
+ @@ -83,5 +83,5 @@ if (!class_exists(\Transliterator::class)) {
8937
+ */
8938
+ #[\ReturnTypeWillChange]
8939
+ - public function getErrorMessage(): string|false
8940
+ + public function getErrorMessage(): string
8941
+ {
8942
+ return isset($this->transliterator) ? $this->transliterator->getErrorMessage() : '';
8926
8943
diff --git a/src/Symfony/Component/Intl/Util/IntlTestHelper.php b/src/Symfony/Component/Intl/Util/IntlTestHelper.php
8927
8944
--- a/src/Symfony/Component/Intl/Util/IntlTestHelper.php
8928
8945
+++ b/src/Symfony/Component/Intl/Util/IntlTestHelper.php
0 commit comments