property = $property; $this->retryUntilValue = $retryUntilValue; $this->tries = $tries; $this->maxExceptions = $maxExceptions; $this->timeout = $timeout; } /** * Execute the job. * * @return void */ public function handle() { throw new Exception("Die"); } public function retryUntil() { return $this->retryUntilValue; } }