You are here

public function FacebookAuthPersistentDataHandler::set in Social Auth Facebook 8

File

src/FacebookAuthPersistentDataHandler.php, line 43

Class

FacebookAuthPersistentDataHandler
Variables are written to and read from session via this class.

Namespace

Drupal\social_auth_facebook

Code

public function set($key, $value) {
  $this->session
    ->set($this
    ->getSessionPrefix() . $key, $value);
}