You are here

public function NativeSessionStorage::isStarted in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::isStarted()

Checks if the session is started.

Return value

bool True if started, false otherwise.

Overrides SessionStorageInterface::isStarted

1 call to NativeSessionStorage::isStarted()
SessionManager::regenerate in core/lib/Drupal/Core/Session/SessionManager.php
Regenerates id that represents this storage.

File

vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php, line 311

Class

NativeSessionStorage
This provides a base class for session attribute storage.

Namespace

Symfony\Component\HttpFoundation\Session\Storage

Code

public function isStarted() {
  return $this->started;
}