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/behat/mink/src/Session.php \Behat\Mink\Session::isStarted()

Checks whether session (driver) was started.

Return value

Boolean

File

vendor/behat/mink/src/Session.php, line 52

Class

Session
Mink session.

Namespace

Behat\Mink

Code

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