From fdc69e77f45dd409e2e7d56246166ba5eb392692 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Wed, 4 Sep 2024 07:45:51 +0000 Subject: [PATCH] remove validator --- src/Appwrite/Auth/Validator/Role.php | 70 ---------------------------- 1 file changed, 70 deletions(-) delete mode 100644 src/Appwrite/Auth/Validator/Role.php diff --git a/src/Appwrite/Auth/Validator/Role.php b/src/Appwrite/Auth/Validator/Role.php deleted file mode 100644 index aea4c4e949..0000000000 --- a/src/Appwrite/Auth/Validator/Role.php +++ /dev/null @@ -1,70 +0,0 @@ -message; - } - - /** - * Expression constructor - */ - public function __construct() - { - } - - /** - * Is valid. - * - * Returns true if valid or false if not. - * - * @param $value - * - * @return bool - */ - public function isValid($value): bool - { - 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; - } -}