From 47cf9aa0fcfe16d4144cc4f804889679453cf384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 17 Sep 2025 13:26:19 +0200 Subject: [PATCH] fix syntax bug --- src/Appwrite/Platform/Modules/Proxy/Action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Modules/Proxy/Action.php b/src/Appwrite/Platform/Modules/Proxy/Action.php index daef09b5f0..972bb2cd12 100644 --- a/src/Appwrite/Platform/Modules/Proxy/Action.php +++ b/src/Appwrite/Platform/Modules/Proxy/Action.php @@ -30,7 +30,7 @@ class Action extends PlatformAction */ public static function verifyRule(Document $rule, ?Log $log = null, ?string $verificationDomainAPI = null, ?string $verificationDomainFunction = null): void { - $dnsValidatorClass = $this->getDNSValidator(); + $dnsValidatorClass = self::getDNSValidator(); $domain = new Domain($rule->getAttribute('domain', ''));