From f8458703c0466bacd132eeee7998836e5b65be6f Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:23:27 +0530 Subject: [PATCH] Headers validator --- src/Appwrite/Functions/Validator/{Header.php => Headers.php} | 1 - 1 file changed, 1 deletion(-) rename src/Appwrite/Functions/Validator/{Header.php => Headers.php} (97%) diff --git a/src/Appwrite/Functions/Validator/Header.php b/src/Appwrite/Functions/Validator/Headers.php similarity index 97% rename from src/Appwrite/Functions/Validator/Header.php rename to src/Appwrite/Functions/Validator/Headers.php index 1e3cd5297b..01f57829bf 100644 --- a/src/Appwrite/Functions/Validator/Header.php +++ b/src/Appwrite/Functions/Validator/Headers.php @@ -52,7 +52,6 @@ class Headers extends Validator if (0 === strpos($key, 'x-appwrite-')) { return false; } - return true; } } }