protected function NativeSessionStorageTest::getStorage in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\NativeSessionStorageTest::getStorage()
Parameters
array $options:
Return value
12 calls to NativeSessionStorageTest::getStorage()
- NativeSessionStorageTest::testBag in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ NativeSessionStorageTest.php - NativeSessionStorageTest::testCookieOptions in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ NativeSessionStorageTest.php - NativeSessionStorageTest::testGetId in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ NativeSessionStorageTest.php - NativeSessionStorageTest::testRegenerate in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ NativeSessionStorageTest.php - NativeSessionStorageTest::testRegenerateDestroy in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ NativeSessionStorageTest.php
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ NativeSessionStorageTest.php, line 61
Class
- NativeSessionStorageTest
- Test class for NativeSessionStorage.
Namespace
Symfony\Component\HttpFoundation\Tests\Session\StorageCode
protected function getStorage(array $options = array()) {
$storage = new NativeSessionStorage($options);
$storage
->registerBag(new AttributeBag());
return $storage;
}