lockName = $lockName; $this->isBlocking = $isBlocking; $this->ttl = $ttl; } public function lockName(): string { return $this->lockName; } public function isBlocking(): bool { return $this->isBlocking; } public function ttl(): float { return $this->ttl; } }