File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
6
6
* New aggregation pipeline builder by @GromNaN in [ #2738 ] ( https://github.com/mongodb/laravel-mongodb/pull/2738 )
7
7
* Drop support for Composer 1.x by @GromNaN in [ #2784 ] ( https://github.com/mongodb/laravel-mongodb/pull/2784 )
8
+ * Fix ` artisan query:retry ` command by @GromNaN in [ #2838 ] ( https://github.com/mongodb/laravel-mongodb/pull/2838 )
8
9
9
10
## [ 4.2.0] - 2024-03-14
10
11
Original file line number Diff line number Diff line change 8
8
use DateTimeInterface ;
9
9
use Exception ;
10
10
use Illuminate \Queue \Failed \DatabaseFailedJobProvider ;
11
+ use MongoDB \BSON \ObjectId ;
11
12
use MongoDB \BSON \UTCDateTime ;
12
13
13
14
use function array_map ;
@@ -86,11 +87,11 @@ public function forget($id)
86
87
}
87
88
88
89
/**
89
- * Get the IDs of all of the failed jobs.
90
+ * Get the IDs of all the failed jobs.
90
91
*
91
92
* @param string|null $queue
92
93
*
93
- * @return list<mixed >
94
+ * @return list<ObjectId >
94
95
*/
95
96
public function ids ($ queue = null )
96
97
{
@@ -102,7 +103,7 @@ public function ids($queue = null)
102
103
}
103
104
104
105
/**
105
- * Prune all entries older than the given date.
106
+ * Prune all failed jobs older than the given date.
106
107
*
107
108
* @param DateTimeInterface $before
108
109
*
You can’t perform that action at this time.
0 commit comments