fix(VKAPI/Handlers/Board): change parameters order

This commit is contained in:
Alexander Minkin 2025-02-09 16:54:26 +03:00
parent 059950bbe6
commit b74775fcf5
Signed by untrusted user: WerySkok
GPG key ID: 88E9A2F3AFE44C30

View file

@ -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();