mirror of
https://github.com/openvk/openvk
synced 2025-03-04 08:39:50 +03:00
fix(VKAPI/Handlers/Board): change parameters order
This commit is contained in:
parent
059950bbe6
commit
b74775fcf5
1 changed files with 2 additions and 1 deletions
|
@ -248,8 +248,9 @@ final class Board extends VKAPIRequestHandler
|
||||||
return 1;
|
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->requireUser();
|
||||||
$this->willExecuteWriteAction();
|
$this->willExecuteWriteAction();
|
||||||
|
|
Loading…
Reference in a new issue