public function Session::getName

Returns the session name.

@api

Return value

mixed The session name.

Overrides SessionInterface::getName

File

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

Class

Session
Session.

Namespace

Symfony\Component\HttpFoundation\Session

Code

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