From f3009d71e7a473eb9d3aba4ea68a71170276f8db Mon Sep 17 00:00:00 2001 From: celestora Date: Tue, 29 Mar 2022 12:26:29 +0300 Subject: [PATCH] Fix typehint in Account.getAppPermissions which caused 500 --- VKAPI/Handlers/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VKAPI/Handlers/Account.php b/VKAPI/Handlers/Account.php index ee55e863..7e707cf3 100644 --- a/VKAPI/Handlers/Account.php +++ b/VKAPI/Handlers/Account.php @@ -60,7 +60,7 @@ final class Account extends VKAPIRequestHandler return 1; } - function getAppPermissions(): object + function getAppPermissions(): int { return 9355263; }