send() публичный Метод

Send a SMS.
public send ( string $view, array $data, Closure $callback ) : OutgoingMessage
$view string The desired view.
$data array The data that needs to be passed into the view.
$callback Closure The methods that you wish to fun on the message.
Результат OutgoingMessage The outgoing message that was sent.
Пример #1
0
 /**
  * Send a SMS.
  *
  * @param string $view The desired view.
  * @param array $data The data that needs to be passed into the view.
  * @param \Closure $callback The methods that you wish to fun on the message.
  * @static 
  */
 public static function send($view, $data, $callback)
 {
     return \SimpleSoftwareIO\SMS\SMS::send($view, $data, $callback);
 }