You are here

public function MockArraySessionStorage::isStarted in Zircon Profile 8

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

Checks if the session is started.

Return value

bool True if started, false otherwise.

Overrides SessionStorageInterface::isStarted

File

vendor/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php, line 213

Class

MockArraySessionStorage
MockArraySessionStorage mocks the session for unit tests.

Namespace

Symfony\Component\HttpFoundation\Session\Storage

Code

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