public function NativeSessionStorage::isStarted

Checks if the session is started.

Return value

boolean True if started, false otherwise.

Overrides SessionStorageInterface::isStarted

File

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

Class

NativeSessionStorage
This provides a base class for session attribute storage.

Namespace

Symfony\Component\HttpFoundation\Session\Storage

Code

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