We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a64ef commit b399208Copy full SHA for b399208
.github/workflows/ci.yml
@@ -15,6 +15,7 @@ jobs:
15
- ubuntu-latest
16
- windows-latest
17
php:
18
+ - 8.5
19
- 8.4
20
- 8.3
21
- 8.2
src/Scheduler/PriorityQueue.php
@@ -72,6 +72,7 @@ class InternalPriorityQueue extends SplPriorityQueue
72
// use this value to "stabilize" the priority queue
73
private $serial = PHP_INT_MAX;
74
75
+ #[ReturnTypeWillChange]
76
public function insert($item, $priority)
77
{
78
parent::insert($item, [$priority, $this->serial--]);
0 commit comments