public function Session::start

Starts the session storage.

@api

Return value

Boolean True if session started.

Throws

\RuntimeException If session fails to start.

Overrides SessionInterface::start

File

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

Class

Session
Session.

Namespace

Symfony\Component\HttpFoundation\Session

Code

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