From ede07c431419c03627fc334b599f2bd21c1aa70c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 11 Dec 2021 21:24:18 +0000 Subject: [PATCH] Mark KnownTranslationKeys and KnownTranslationFactory as @internal --- build/generate-known-translation-apis.php | 4 ++++ src/lang/KnownTranslationFactory.php | 2 ++ src/lang/KnownTranslationKeys.php | 2 ++ 3 files changed, 8 insertions(+) diff --git a/build/generate-known-translation-apis.php b/build/generate-known-translation-apis.php index feee9b183..e4f35893b 100644 --- a/build/generate-known-translation-apis.php +++ b/build/generate-known-translation-apis.php @@ -95,6 +95,8 @@ function generate_known_translation_keys(array $languageDefinitions) : void{ /** * This class contains constants for all the translations known to PocketMine-MP as per the used version of pmmp/Language. * This class is generated automatically, do NOT modify it by hand. + * + * @internal */ final class KnownTranslationKeys{ @@ -127,6 +129,8 @@ function generate_known_translation_factory(array $languageDefinitions) : void{ * This class contains factory methods for all the translations known to PocketMine-MP as per the used version of * pmmp/Language. * This class is generated automatically, do NOT modify it by hand. + * + * @internal */ final class KnownTranslationFactory{ diff --git a/src/lang/KnownTranslationFactory.php b/src/lang/KnownTranslationFactory.php index 35418d18c..c8536d885 100644 --- a/src/lang/KnownTranslationFactory.php +++ b/src/lang/KnownTranslationFactory.php @@ -27,6 +27,8 @@ namespace pocketmine\lang; * This class contains factory methods for all the translations known to PocketMine-MP as per the used version of * pmmp/Language. * This class is generated automatically, do NOT modify it by hand. + * + * @internal */ final class KnownTranslationFactory{ public static function ability_flight() : Translatable{ diff --git a/src/lang/KnownTranslationKeys.php b/src/lang/KnownTranslationKeys.php index 7b77513dc..805f0a686 100644 --- a/src/lang/KnownTranslationKeys.php +++ b/src/lang/KnownTranslationKeys.php @@ -26,6 +26,8 @@ namespace pocketmine\lang; /** * This class contains constants for all the translations known to PocketMine-MP as per the used version of pmmp/Language. * This class is generated automatically, do NOT modify it by hand. + * + * @internal */ final class KnownTranslationKeys{ public const ABILITY_FLIGHT = "ability.flight";