Skip to content

Commit

Permalink
[HttpFoundation] Move session handler classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Drak committed Mar 14, 2012
1 parent 0a064d8 commit 2257a3d
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -68,8 +68,6 @@ public function __construct(\Memcache $memcache, array $memcacheOptions = array(
$this->prefix = isset($memcacheOptions['prefix']) ? $memcacheOptions['prefix'] : 'sf2s';

$this->memcacheOptions = $memcacheOptions;

parent::__construct($options);
}

protected function addServer(array $server)
Expand Down

0 comments on commit 2257a3d

Please sign in to comment.