diff --git a/src/Appwrite/Utopia/Database/Validator/UID.php b/src/Appwrite/Utopia/Database/Validator/UID.php deleted file mode 100644 index 953742ec2c..0000000000 --- a/src/Appwrite/Utopia/Database/Validator/UID.php +++ /dev/null @@ -1,70 +0,0 @@ - 32) { - return false; - } - - return true; - } - - /** - * Is array - * - * Function will return true if object is array. - * - * @return bool - */ - public function isArray(): bool - { - return false; - } - - /** - * Get Type - * - * Returns validator type. - * - * @return string - */ - public function getType(): string - { - return self::TYPE_STRING; - } -}