Skip to content

Commit de9dd03

Browse files
authored
Update Queue.php
1 parent ffe9d0a commit de9dd03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/vennv/Queue.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ final class Queue
4343
private bool $isAllSettled = false;
4444

4545
public function __construct(
46-
private readonly int $id,
47-
private readonly Fiber $fiber,
48-
private readonly float $timeOut,
46+
private int $id,
47+
private Fiber $fiber,
48+
private float $timeOut,
4949
private StatusQueue $status,
50-
private readonly bool $isPromise,
51-
private readonly bool $isPromiseAll = false
50+
private bool $isPromise,
51+
private bool $isPromiseAll = false
5252
)
5353
{
5454
$this->timeStart = microtime(true);
@@ -509,4 +509,4 @@ public function hasCompletedAllPromise() : bool
509509
return $return;
510510
}
511511

512-
}
512+
}

0 commit comments

Comments
 (0)