You are here

public function SessionProxy_Backend_Default::destroyAllForUser in Session Proxy 7

Native implementation is opaque, and cannot allow us to index session: it is impossible to proceed with this cleaning.

Overrides SessionProxy_Backend_Base::destroyAllForUser

See also

SessionProxy_Backend_Interface::destroyAllForUser()

File

lib/SessionProxy/Backend/Default.php, line 128

Class

SessionProxy_Backend_Default
Default implementation relies on a custom storage engine.

Code

public function destroyAllForUser($uid) {
  $this->storage
    ->destroyFor(array(
    'uid',
    $uid,
  ));
}