/**
  * Delete the job from the queue.
  *
  * @return void
  */
 public function delete()
 {
     parent::delete();
     $this->database->deleteStarted($this->queue, $this->job['id']);
 }