protected function PhpBridgeSessionStorageTest::getStorage in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\PhpBridgeSessionStorageTest::getStorage()
Return value
3 calls to PhpBridgeSessionStorageTest::getStorage()
- PhpBridgeSessionStorageTest::testClear in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ PhpBridgeSessionStorageTest.php - PhpBridgeSessionStorageTest::testPhpSession53 in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ PhpBridgeSessionStorageTest.php - PhpBridgeSessionStorageTest::testPhpSession54 in vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ PhpBridgeSessionStorageTest.php
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ PhpBridgeSessionStorageTest.php, line 54
Class
- PhpBridgeSessionStorageTest
- Test class for PhpSessionStorage.
Namespace
Symfony\Component\HttpFoundation\Tests\Session\StorageCode
protected function getStorage() {
$storage = new PhpBridgeSessionStorage();
$storage
->registerBag(new AttributeBag());
return $storage;
}