protected function NativeSessionStorageTest::getStorage

Return value

NativeSessionStorage

9 calls to NativeSessionStorageTest::getStorage()
NativeSessionStorageTest::testBag in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php
NativeSessionStorageTest::testCookieOptions in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php
NativeSessionStorageTest::testGetId in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php
NativeSessionStorageTest::testRegenerate in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php
NativeSessionStorageTest::testRegenerateDestroy in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php

... See full list

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php, line 34

Class

NativeSessionStorageTest
Test class for NativeSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

protected function getStorage(array $options = array()) {
  $storage = new NativeSessionStorage($options);
  $storage
    ->registerBag(new AttributeBag());
  return $storage;
}