You are here

public function Session::isStarted in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/behat/mink/src/Session.php \Behat\Mink\Session::isStarted()
  2. 8.0 vendor/symfony/http-foundation/Session/Session.php \Symfony\Component\HttpFoundation\Session\Session::isStarted()
Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Session/Session.php \Symfony\Component\HttpFoundation\Session\Session::isStarted()

Checks if the session was started.

Return value

bool

Overrides SessionInterface::isStarted

File

vendor/symfony/http-foundation/Session/Session.php, line 133

Class

Session
Session.

Namespace

Symfony\Component\HttpFoundation\Session

Code

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