[HttpFoundation] Move session handler classes.

This commit is contained in:
Drak 2012-03-03 08:46:53 +05:45
parent 0a064d8aa1
commit 2257a3d4d6
7 changed files with 2 additions and 4 deletions

View File

@ -9,14 +9,14 @@
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpFoundation\Session\Storage;
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* MemcacheSessionStorage.
*
* @author Drak <drak@zikula.org>
*/
class MemcacheSessionStorage extends AbstractSessionStorage implements \SessionHandlerInterface
class MemcacheSessionHandler implements \SessionHandlerInterface
{
/**
* Memcache driver.
@ -68,8 +68,6 @@ class MemcacheSessionStorage extends AbstractSessionStorage implements \SessionH
$this->prefix = isset($memcacheOptions['prefix']) ? $memcacheOptions['prefix'] : 'sf2s';
$this->memcacheOptions = $memcacheOptions;
parent::__construct($options);
}
protected function addServer(array $server)