[HttpFoundation] Fixed closeSession for the Memcached storage

This commit is contained in:
Christophe Coevoet 2012-02-12 12:08:35 +01:00
parent ec44e6831a
commit 2c767d163b

View File

@ -81,7 +81,7 @@ class MemcachedSessionStorage extends AbstractSessionStorage implements SessionS
*/
public function closeSession()
{
return $this->memcached->close();
return true;
}
/**