From b74775fcf5b97159439f2c1d7809b7ac149ece04 Mon Sep 17 00:00:00 2001 From: Alexander Minkin Date: Sun, 9 Feb 2025 16:54:26 +0300 Subject: [PATCH] fix(VKAPI/Handlers/Board): change parameters order --- VKAPI/Handlers/Board.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VKAPI/Handlers/Board.php b/VKAPI/Handlers/Board.php index f2f3ec76..28328586 100644 --- a/VKAPI/Handlers/Board.php +++ b/VKAPI/Handlers/Board.php @@ -248,8 +248,9 @@ final class Board extends VKAPIRequestHandler return 1; } - public function editComment(int $comment_id, int $group_id = 0, int $topic_id = 0, string $message, string $attachments) + public function editComment(string $message, string $attachments, int $comment_id, int $group_id = 0, int $topic_id = 0) { + # FIXME /* $this->requireUser(); $this->willExecuteWriteAction();