diff --git a/lib/Doctrine/DBAL/Types/Type.php b/lib/Doctrine/DBAL/Types/Type.php index f8be9131bcd..581bf44f66d 100644 --- a/lib/Doctrine/DBAL/Types/Type.php +++ b/lib/Doctrine/DBAL/Types/Type.php @@ -195,9 +195,6 @@ abstract public function getSQLDeclaration(array $column, AbstractPlatform $plat */ abstract public function getName(); - /** - * @internal This method is only to be used within DBAL for forward compatibility purposes. Do not use directly. - */ final public static function getTypeRegistry(): TypeRegistry { if (self::$typeRegistry === null) { diff --git a/lib/Doctrine/DBAL/Types/TypeRegistry.php b/lib/Doctrine/DBAL/Types/TypeRegistry.php index fdae6d603c8..ce33b951ae8 100644 --- a/lib/Doctrine/DBAL/Types/TypeRegistry.php +++ b/lib/Doctrine/DBAL/Types/TypeRegistry.php @@ -12,8 +12,6 @@ /** * The type registry is responsible for holding a map of all known DBAL types. * The types are stored using the flyweight pattern so that one type only exists as exactly one instance. - * - * @internal TypeRegistry exists for forward compatibility, its API should not be considered stable. */ final class TypeRegistry {