public function MemcacheSessionHandler::destroy

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php, line 96

Class

MemcacheSessionHandler
MemcacheSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Handler

Code

public function destroy($sessionId) {
  return $this->memcache
    ->delete($this->prefix . $sessionId);
}