/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Queue/Jobs
NameSizeModeActions
BeanstalkdJob.php27340755editdlrm
DatabaseJob.php22430644editdlrm
DatabaseJobRecord.php11280644editdlrm
Job.php70530755editdlrm
JobName.php6700644editdlrm
RedisJob.php30270644editdlrm
SqsJob.php25450755editdlrm
SyncJob.php17020755editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJobRecord.php (1128B)
record = $record; } /** * Increment the number of times the job has been attempted. * * @return int */ public function increment() { $this->record->attempts++; return $this->record->attempts; } /** * Update the "reserved at" timestamp of the job. * * @return int */ public function touch() { $this->record->reserved_at = $this->currentTime(); return $this->record->reserved_at; } /** * Dynamically access the underlying job information. * * @param string $key * @return mixed */ public function __get($key) { return $this->record->{$key}; } }