public function MockArraySessionStorage::setId

Sets the session ID

@api

Parameters

string $id:

Overrides SessionStorageInterface::setId

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/MockArraySessionStorage.php, line 132

Class

MockArraySessionStorage
MockArraySessionStorage mocks the session for unit tests.

Namespace

Symfony\Component\HttpFoundation\Session\Storage

Code

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