public function AttributeBag::__construct

Constructor.

Parameters

string $storageKey The key used to store attributes in the session.:

1 call to AttributeBag::__construct()
NamespacedAttributeBag::__construct in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php
Constructor.
1 method overrides AttributeBag::__construct()
NamespacedAttributeBag::__construct in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Attribute/NamespacedAttributeBag.php
Constructor.

File

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

Class

AttributeBag
This class relates to session attribute storage

Namespace

Symfony\Component\HttpFoundation\Session\Attribute

Code

public function __construct($storageKey = '_sf2_attributes') {
  $this->storageKey = $storageKey;
}