protected function PhpSessionStorageTest::getStorage

Return value

PhpBridgeSessionStorage

3 calls to PhpSessionStorageTest::getStorage()

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;
}