function MetadataBag::__construct
Same name in this branch
- 11.1.x vendor/symfony/http-foundation/Session/Storage/MetadataBag.php \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag::__construct()
Constructs a new metadata bag instance.
Parameters
\Drupal\Core\Site\Settings $settings: The settings instance.
Overrides MetadataBag::__construct
File
-
core/
lib/ Drupal/ Core/ Session/ MetadataBag.php, line 25
Class
- MetadataBag
- Provides a container for application specific session metadata.
Namespace
Drupal\Core\SessionCode
public function __construct(Settings $settings) {
$update_threshold = $settings->get('session_write_interval', 180);
parent::__construct('_sf2_meta', $update_threshold);
}