You are here

public function Session::getName in Zircon Profile 8.0

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

Returns the session name.

Return value

mixed The session name.

Overrides SessionInterface::getName

File

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

Class

Session
Session.

Namespace

Symfony\Component\HttpFoundation\Session

Code

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