Esempio n. 1
0
 /**
  * Tries to retry the job
  *
  * @return boolean
  *
  * @codeCoverageIgnore
  */
 protected function autoRetry()
 {
     if ($this->attempts() <= $this->config['retry']) {
         return $this->connector->release($this, $this->config['delay']);
     }
 }