Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix TrackedJob docblocks #44

Merged
merged 1 commit into from
Apr 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/Models/TrackedJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

/**
* @package Junges\TrackableJobs\Models
* @property string|null uuid
* @property int trackable_id
* @property string trackable_type
* @property string name
* @property string status
* @property string|null output
* @property \Carbon\Carbon|null started_at
* @property \Carbon\Carbon|null finished_at
* @property string|null $uuid
* @property int $trackable_id
* @property string $trackable_type
* @property string $name
* @property string $status
* @property string|null $output
* @property \Carbon\Carbon|null $started_at
* @property \Carbon\Carbon|null $finished_at
* @mixin Builder
*/
class TrackedJob extends Model implements TrackableJobContract
Expand Down