Exemple #1
0
 /**
  * Push an array of jobs onto the queue.
  *
  * @param array $jobs
  * @param mixed $data
  * @param string $queue
  * @return mixed 
  * @static 
  */
 public static function bulk($jobs, $data = '', $queue = null)
 {
     return \Illuminate\Queue\DatabaseQueue::bulk($jobs, $data, $queue);
 }