['S', 'all'], ]; public function getQueue(): string { return $this->queue; } public function setQueue(string $queue): self { $this->queue = $queue; return $this; } public function isExclusive(): bool { return $this->exclusive; } public function setExclusive(bool $exclusive): self { $this->exclusive = $exclusive; return $this; } }