modify plugin name

This commit is contained in:
2022-07-11 16:49:32 +08:00
parent d2c42c8553
commit 0705eefd69
+4 -4
View File
@@ -14,11 +14,11 @@ class PoolQueue implements QueueInterface
public function __construct(public int $max)
{
if (Context::inCoroutine()) {
$this->queue = new Channel($this->max);
} else {
// if (Context::inCoroutine()) {
// $this->queue = new Channel($this->max);
// } else {
$this->queue = new SplQueue($this->max);
}
// }
}