protected function PhpSessionStorageTest::getStorage

Return value

PhpBridgeSessionStorage

3 calls to PhpSessionStorageTest::getStorage()
PhpSessionStorageTest::testClear in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php
PhpSessionStorageTest::testPhpSession53 in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php
PhpSessionStorageTest::testPhpSession54 in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php

File

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

Class

PhpSessionStorageTest
Test class for PhpSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

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