public function Session::isStarted

Checks if the session was started.

Return value

Boolean

Overrides SessionInterface::isStarted

File

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

Class

Session
Session.

Namespace

Symfony\Component\HttpFoundation\Session

Code

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