Overrides SessionStorageInterface::setId
public function setId(string $id) : void { if ($this->started) { throw new \LogicException('Cannot set session ID after the session has started.'); } $this->id = $id; }