function MetadataBag::stampNew
Same name in this branch
- 11.1.x vendor/symfony/http-foundation/Session/Storage/MetadataBag.php \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag::stampNew()
Overrides MetadataBag::stampNew
File
-
core/
lib/ Drupal/ Core/ Session/ MetadataBag.php, line 55
Class
- MetadataBag
- Provides a container for application specific session metadata.
Namespace
Drupal\Core\SessionCode
public function stampNew($lifetime = NULL) : void {
parent::stampNew($lifetime);
// Set the token seed immediately to avoid a race condition between two
// simultaneous requests without a seed.
$this->setCsrfTokenSeed(Crypt::randomBytesBase64());
}