You are here

public function Session::setName 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::setName()

Sets the session name.

Parameters

string $name:

Overrides SessionInterface::setName

File

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

Class

Session
Session.

Namespace

Symfony\Component\HttpFoundation\Session

Code

public function setName($name) {
  $this->storage
    ->setName($name);
}