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