semaphore = $semaphore; $this->prefix = $prefix; } public function acquire(string $key) : Promise { return $this->semaphore->acquire($this->prefix . $key); } }