Example #1
0
 /**
  * Send a message.
  *
  * @param Msg $msg
  *
  * @return mixed This will return the data field.
  */
 public function send(Msg $msg)
 {
     $response = $this->http->post('messages', $msg->build());
     return $this->parseResponse($response)['data'];
 }