public function MemcacheSessionHandlerTest::getOptionFixtures in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcacheSessionHandlerTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler\MemcacheSessionHandlerTest::getOptionFixtures()
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ Handler/ MemcacheSessionHandlerTest.php, line 115
Class
Namespace
Symfony\Component\HttpFoundation\Tests\Session\Storage\HandlerCode
public function getOptionFixtures() {
return array(
array(
array(
'prefix' => 'session',
),
true,
),
array(
array(
'expiretime' => 100,
),
true,
),
array(
array(
'prefix' => 'session',
'expiretime' => 200,
),
true,
),
array(
array(
'expiretime' => 100,
'foo' => 'bar',
),
false,
),
);
}