You are here

public function NullSessionHandlerTest::getStorage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler\NullSessionHandlerTest::getStorage()
3 calls to NullSessionHandlerTest::getStorage()
NullSessionHandlerTest::testNothingIsPersisted in vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php
NullSessionHandlerTest::testSaveHandlers in vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php
NullSessionHandlerTest::testSession in vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php

File

vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php, line 54

Class

NullSessionHandlerTest
Test class for NullSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler

Code

public function getStorage() {
  return new NativeSessionStorage(array(), new NullSessionHandler());
}