Exemplo n.º 1
0
 /**
  * Saves the tokens so that they can be used by a later incarnation of this
  * class.
  *
  * @access private
  * @return void
  */
 public function persistSessionToken()
 {
     $this->backendUser->setAndSaveSessionData('formSessionToken', $this->sessionToken);
 }
Exemplo n.º 2
0
 /**
  * Save the provided array into the session
  *
  * @param array $sessionArray
  * @return void
  */
 protected function saveSessionData(array $sessionArray)
 {
     $this->backendUserAuthentication->setAndSaveSessionData($this->key, serialize($sessionArray));
 }