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

Queues a message to be sent a later time on a given queue.
public laterOn ( null | string $queue, integer $delay, string $view, array $data, Closure | string $callback )
$queue null | string The desired queue to push the message to.
$delay integer The desired delay in seconds
$view string The desired view.
$data array An array of data to fill the view.
$callback Closure | string The callback to run on the Message class.
Пример #1
0
 /**
  * Queues a message to be sent a later time on a given queue.
  *
  * @param null|string $queue The desired queue to push the message to.
  * @param int $delay The desired delay in seconds
  * @param string $view The desired view.
  * @param array $data An array of data to fill the view.
  * @param \Closure|string $callback The callback to run on the Message class.
  * @return void 
  * @static 
  */
 public static function laterOn($queue, $delay, $view, $data, $callback)
 {
     \SimpleSoftwareIO\SMS\SMS::laterOn($queue, $delay, $view, $data, $callback);
 }