Esempio n. 1
0
 /**
  * {@inheritDoc}
  */
 public function clearAllTokens()
 {
     $this->session->remove($this->sessionVariable);
     return $this;
 }
Esempio n. 2
0
 /**
  * destroy session
  *
  * @param ItemEntity $item board item entity
  * @return void
  */
 public function destroy(ItemEntity $item)
 {
     $this->session->remove($this->getKey($item->id));
 }
 /**
  * destroy session
  *
  * @param Board $board board model
  * @return void
  */
 public function destroy(Board $board)
 {
     $this->session->remove($this->getKey($board->id));
 }