/**
  * @return bool|null
  * @throws \Exception
  */
 public function clearAllJobHistory()
 {
     return JobTracking::truncate();
 }
Exemple #2
0
 /**
  * Clear the database job tracking cache
  */
 public function clear_database_jobs()
 {
     $this->info('Clearing the database Job Tracking Cache');
     JobTracking::truncate();
 }