Esempio n. 1
0
 /**
  * @param Job $job
  */
 public function executeJob(Job $job)
 {
     try {
         $this->execute($job);
     } catch (Throwable $e) {
         $this->error($e->getMessage(), ['exception' => $e]);
         $this->gateway->restoreJob($job);
     }
 }