/**
  * Release the job back into the queue.
  *
  * @param  int   $delay
  * @return void
  */
 public function release($delay = 0)
 {
     if ($this->job) {
         return $this->job->release($delay);
     }
 }