Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2257a3d

Browse filesBrowse files
author
Drak
committed
[HttpFoundation] Move session handler classes.
1 parent 0a064d8 commit 2257a3d
Copy full SHA for 2257a3d

File tree

Expand file treeCollapse file tree

7 files changed

+2
-4
lines changed
Filter options
Expand file treeCollapse file tree

7 files changed

+2
-4
lines changed

‎src/Symfony/Component/HttpFoundation/Session/Storage/MemcacheSessionStorage.php renamed to ‎src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php
+2-4Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpFoundation\Session\Storage;
12+
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
1313

1414
/**
1515
* MemcacheSessionStorage.
1616
*
1717
* @author Drak <drak@zikula.org>
1818
*/
19-
class MemcacheSessionStorage extends AbstractSessionStorage implements \SessionHandlerInterface
19+
class MemcacheSessionHandler implements \SessionHandlerInterface
2020
{
2121
/**
2222
* Memcache driver.
@@ -68,8 +68,6 @@ public function __construct(\Memcache $memcache, array $memcacheOptions = array(
6868
$this->prefix = isset($memcacheOptions['prefix']) ? $memcacheOptions['prefix'] : 'sf2s';
6969

7070
$this->memcacheOptions = $memcacheOptions;
71-
72-
parent::__construct($options);
7371
}
7472

7573
protected function addServer(array $server)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.