REDROOM
PHP 8.3.31
Path:
Logout
Edit File
Size: 1.10 KB
Close
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Queue/Jobs/DatabaseJobRecord.php
Text
Base64
<?php namespace Illuminate\Queue\Jobs; use Illuminate\Support\InteractsWithTime; class DatabaseJobRecord { use InteractsWithTime; /** * The underlying job record. * * @var \stdClass */ protected $record; /** * Create a new job record instance. * * @param \stdClass $record * @return void */ public function __construct($record) { $this->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}; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 9
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
BeanstalkdJob.php
3.09 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DatabaseJob.php
2.21 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
DatabaseJobRecord.php
1.10 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
FakeJob.php
1.65 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Job.php
8.64 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
JobName.php
670 B
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
RedisJob.php
2.97 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SqsJob.php
2.50 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SyncJob.php
1.68 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).