Skip to content
This repository has been archived by the owner on Mar 9, 2019. It is now read-only.

Commit

Permalink
Add controller for the sendMessages
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Helldar committed Jan 29, 2018
1 parent bcddc25 commit c503395
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Controllers/Messages/SendController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace Helldar\Vk\Controllers\Messages;

/**
* Sends a message.
*
* @see https://vk.com/dev/messages.send
*/
class SendController
{
/**
* Available method parameters.
*
* @var array
*/
protected $parameters = ['user_id', 'random_id', 'peer_id', 'domain', 'chat_id', 'user_ids', 'message', 'lat', 'long', 'forward_messages', 'sticker_id'];
}

0 comments on commit c503395

Please sign in to comment.