Skip to content

Commit 00d73f4

Browse files
author
Toby Allen
committed
fix bug, this will always be timestamp
1 parent 8f8ce0f commit 00d73f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/QueueCount.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function handle()
7171
$JobDetails = json_decode($job->payload);
7272
$this->info( $job->queue
7373
.' | '. $JobDetails->displayName
74-
. '|' . Carbon::parse($job->available_at)->diffForHumans());
74+
. '|' . Carbon::createFromTimestamp($job->available_at)->diffForHumans());
7575
});
7676

7777
if ($this->option('live') ){

0 commit comments

Comments
 (0)