adds migrate() to Session

This migrates the session to a new session id while not deleting the
actual session attributes.
This commit is contained in:
Johannes Schmitt 2011-01-23 21:43:07 +01:00 committed by Fabien Potencier
parent 0144dd86da
commit 6432dea07c

View File

@ -168,6 +168,15 @@ class Session implements \Serializable
$this->storage->regenerate();
}
/**
* Migrates the current session to a new session id while maintaining all
* session attributes.
*/
public function migrate()
{
$this->storage->regenerate();
}
/**
* Returns the session ID
*