Beispiel #1
0
 /**
  * Push a new job onto the queue.
  *
  * @param string $job
  * @param mixed $data
  * @param string $queue
  * @return mixed 
  * @throws \Throwable
  * @static 
  */
 public static function push($job, $data = '', $queue = null)
 {
     return \Illuminate\Queue\SyncQueue::push($job, $data, $queue);
 }